Browse Source

Merge remote-tracking branch 'origin/master' into develop

pull/23029/head
QMK Bot 2 months ago
parent
commit
3f6e362b8d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      platforms/chibios/drivers/ws2812_bitbang.c

+ 5
- 1
platforms/chibios/drivers/ws2812_bitbang.c View File

@ -9,7 +9,11 @@
# if defined(STM32F0XX) || defined(STM32F1XX) || defined(GD32VF103) || defined(STM32F3XX) || defined(STM32F4XX) || defined(STM32L0XX) || defined(WB32F3G71xx) || defined(WB32FQ95xx)
# define NOP_FUDGE 0.4
# else
# error("NOP_FUDGE configuration required")
# if defined(RP2040)
# error "Please use `vendor` WS2812 driver for RP2040"
# else
# error "NOP_FUDGE configuration required"
# endif
# define NOP_FUDGE 1 // this just pleases the compile so the above error is easier to spot
# endif
#endif


Loading…
Cancel
Save