1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
Commit Graph

22 Commits

Author SHA1 Message Date
Marian Buschsieweke
97b91b4f8f
boards/stm32: use GPIO LL for LEDs
This fixes a race in `LED<NUM>_TOGGLE`, which is a read-copy-write
operation. Any access to a GPIO pin on the same GPIO port that
happens concurrently could result in data corruption. Using the
GPIO LL API, which is thread-safe, fixes the issue.

Note: The used GPIO LL functions will work even in when the GPIO LL
      module is not used.
2024-08-02 09:55:24 +02:00
krzysztof-cabaj
e4d7331398 boards/nucleo-u575zi-q: fix wrong board number - l552ze-q to u575zi-q 2024-05-07 17:11:57 +02:00
krzysztof-cabaj
bbe25cd247 boards/stm32f469i-disco: fix inch sign which corrupts bottom of doc 2024-05-07 09:59:31 +02:00
MrKevinWeiss
e0fdc3c16c
*Kconfig*: Modify Kconfig to remove dep model 2024-03-27 10:28:12 +01:00
Gunar Schorcht
5f97873a57 boards/stm32f469i-disco: add FMC with SDRAM support 2023-09-03 11:29:15 +02:00
MrKevinWeiss
464f57b4a3
boards: Remove PLL overrides in kconfig
Since we know the HSE speed, manual overrides are not needed anymore
2022-11-03 13:38:09 +01:00
MrKevinWeiss
17cce015d4
treewide/stm32: Make CLOCK_HS* configurable 2022-11-03 11:37:28 +01:00
Gunar Schorcht
990feeec39 boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
Marian Buschsieweke
1fd9913293
boards/common/stm32: clean up LED definitions
Let boards only define the port and pin number of each LEDs. The common
definitions in `stm32_leds.h` will provide `LED<x>_ON`, `LED<x>_OFF`,
`LED<x>_TOGGLE`, `LED<x>_PIN`, `LED<x>_MASK` and `LED<x>_PORT`.

In addition to code de-duplication, this also makes it easier to use
LEDs in GPIO LL, which can be beneficial for super low overhead
debugging output - e.g. when a bug is timing sensitive and `DEBUG()`
would spent to much time for stdio to reproduce a bug.
2022-08-08 23:35:06 +02:00
benpicco
dd2d8a464a
Merge pull request #18041 from krzysztof-cabaj/stm32f469i-disco-LEDs
boards/stm32f469i-disco: LEDX_ON LEDX_OFF mismatch
2022-05-02 12:16:25 +02:00
krzysztof-cabaj
3f49e9b17a boards/stm32f469i-disco: LEDX_ON LEDX_OFF mismatch fix 2022-05-02 05:06:00 -04:00
krzysztof-cabaj
94a103f756 boards/stm32f469i-disco: doc improvments 2022-04-30 11:45:51 -04:00
krzysztof-cabaj
f6de04bd19 enable cpy2remed programmer 2022-04-29 14:29:28 -04:00
Benjamin Valentin
5d111e71aa boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
Francisco Molina
464d941a3e boards: drop empty custom board_init & empty board.c 2022-02-22 18:27:37 +01:00
Fabian Hüßler
9163d78910 boards: add VBAT for stm32 based boards with ADC 2022-02-21 10:49:43 +01:00
Benjamin Valentin
468ea89953 boards: drop LED init
This is handled by periph_init_leds now
2022-02-18 14:35:43 +01:00
MrKevinWeiss
deda2cfb97
boards: Fix stm32 based boards kconfig models 2021-12-15 09:31:45 +01:00
luisan00
ea2e1393b8 boards/stm32f469i-disco: Add DAC 2021-11-19 13:18:22 +01:00
kl
4b0a28aba2 boards/stm32f469i-disco: fix documentation 2021-10-21 21:58:12 +02:00
Benjamin Valentin
fc88c4c4e5 boards: drop cpu_init() 2021-10-13 23:36:41 +02:00
luisan00
50277d31e9 boards/stm32f469i-disco: Add board 2021-10-13 11:22:45 +02:00