Ask questions, find answers, and share insights on STM32 products and their technical features.
STM32H747XIH6U the boot0 pin of this chip, the datasheet description is the pin that enters the RSS, and the BOOT0 pull-up of the M4 series can download the program with serial port.
Hello,Here is my source code: void WatchDog(void){ NVIC_InitTypeDef nvicStructure; NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); nvicStructure.NVIC_IRQChannel = WWDG_IRQn; nvicStructure.NVIC_IRQChannelPreemptionPriority = 1; nvicSt...
Hi all, Apart from the board and two machines (Windows and Linux) I have also an MB-102 breadboard and a bunch of cables in hands. Firstly I wanted to make use of this tutorial for the task above but it's dealing with NUCLEO-L476RG that I lack for th...
Hello ST.I have missed the confirmation mail but I do pretend to join the session.My Board's buy is handled be my company's sales and should be invited soon.Please add my to the 11/3 session again.Thanks,Hagay
Hello, I have an stm32F103, I would like to start using DMA to transfer data from memory to TX pin, in circular mode it works fine but when I switch to normal mode it works only once, I cannot use the debug function since I'm not using a ST-Link, so ...
HAL_StatusTypeDef HAL_UART_Transmit_IT(UART_HandleTypeDef *huart, uint8_t *pData, uint16_t Size){ /* Check that a Tx process is not already ongoing */ if (huart->gState == HAL_UART_STATE_READY) { if ((pData == NULL) || (Size == 0U)) { return HAL_...
I am new to STM32, recently came across the compatibility of none genuine STM32 MCU issues.For example, I found the STM32F103C8T6 chip link at HERE, which one is genuine STM32 MCU in this case ?Secondly, where can I find a trusted vendors that supply...
I'm using the Nucleo-H743ZI STM32 development board on windows 10. When I upload a program that sends out data through CDC with CDC_Transmit_FS and open a serial monitor right after, it works fine. But when I disconnect and reconnect the Nucleo to my...