1
0
Fork 0

[docs] Improve halconf/mcuconf code examples (#24597)

This commit is contained in:
Ryan 2024-11-15 05:00:02 +11:00 committed by GitHub
parent a8a47c4011
commit 46236ce3de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 222 additions and 136 deletions

View file

@ -35,8 +35,12 @@ You'll need to determine which pins can be used for UART -- as an example, STM32
To enable UART, modify your board's `mcuconf.h` to enable the peripheral you've chosen, for example:
```c
#undef STM32_SERIAL_USE_USART2
#define STM32_SERIAL_USE_USART2 TRUE
#pragma once
#include_next <mcuconf.h>
#undef STM32_SERIAL_USE_USART2 // [!code focus]
#define STM32_SERIAL_USE_USART2 TRUE // [!code focus]
```
Configuration-wise, you'll need to set up the peripheral as per your MCU's datasheet -- the defaults match the pins for a Proton-C, i.e. STM32F303.