Marian Buschsieweke aec9eb7f6a
cpu/stm32: Fix uart_init()
- Make use of the fact that gpio_init_af() does not need prior call to
  gpio_init() for all STM32 families anymore and drop call to gpio_init()
- Initialize the UART periph first, before initializing the pins
    - While uninitialized, the UART periph will send signal LOW to TXD. This
      results in a start bit being picked up by the other side.
    - Instead, we do not connect the UART periph to the pins until it is
      initialized, so that the TXD level will already be HIGH when the pins
      are attached.
    - This results in no more garbage being send during initialization
2020-07-15 12:12:46 +02:00
..
2020-07-15 12:12:46 +02:00
2020-06-19 14:18:17 +02:00
2020-06-19 14:18:17 +02:00
2020-05-20 13:39:11 +02:00
2020-06-11 09:51:41 +02:00