Posted on May 17, 2011 at 13:23up! I'd like to transmit every time I need using interrupt (not only after reset!). Is it possible? Example: while (1) { USART1->??? = ???; Delay(123); } Thanks jerry
Posted on May 17, 2011 at 13:23Hi Chris, Using a third interrupt, USART_IT_TC, problem (1) seems to be solved! I'm testing a rs232/rs485 converter (between pc and stm32 board). Without this interrupt, I checked the number of transmitted characters, ...
Posted on May 17, 2011 at 13:23Hi all, I'm working on my first stm32 based project, starting from ''HyperTerminal_Interrupt'' example into stm32 fwlib. I have 2 questions: 1) Both send and receive operations transfer one more character (0xfe during ...