Skip to content

Commit

Permalink
[Bug] Fix compilation error for APA on ChibiOS (qmk#21773)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored and thismarvin committed Sep 27, 2023
1 parent f3f7fb7 commit 79364b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/led/apa102.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
# if defined(__AVR__)
# define APA102_NOPS 0 // AVR at 16 MHz already spends 62.5 ns per clock, so no extra delay is needed
# elif defined(PROTOCOL_CHIBIOS)

# include "hal.h"
# include "chibios_config.h"
# if defined(STM32F0XX) || defined(STM32F1XX) || defined(STM32F3XX) || defined(STM32F4XX) || defined(STM32L0XX) || defined(GD32VF103)
# define APA102_NOPS (100 / (1000000000L / (CPU_CLOCK / 4))) // This calculates how many loops of 4 nops to run to delay 100 ns
# else
Expand Down

0 comments on commit 79364b1

Please sign in to comment.