This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

STM32 USART problem

Hello!!

I have problem witch initiation USART in STM32 microcontroler. I use standard KEIL configuration file to setup USART. After configuration (I stop program witch while(1) function) but I receive in Windows Terminal one unexpected sign. I can't eliminate this problem...

Parents
  • I use STM32_Init.c file for configuration. It is standard configuration file from Keil MDK.

    My aplication is very simple:

    int main(void){

    stm32_Init(); /* In this file I make usart configuration */

    while (1);
    }

    After execute firs line of the code, I receive this sign "ü".

Reply
  • I use STM32_Init.c file for configuration. It is standard configuration file from Keil MDK.

    My aplication is very simple:

    int main(void){

    stm32_Init(); /* In this file I make usart configuration */

    while (1);
    }

    After execute firs line of the code, I receive this sign "ü".

Children