Skip to content

Commit

Permalink
Define STM32_DMA_REQUIRED when using DMA-based WS2812 driver on STM32. (
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored and noroadsleft committed Aug 29, 2020
1 parent 3948065 commit 0810a33
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
6 changes: 6 additions & 0 deletions common_features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,12 @@ ifeq ($(strip $(WS2812_DRIVER_REQUIRED)), yes)
SRC += ws2812.c
else
SRC += ws2812_$(strip $(WS2812_DRIVER)).c

ifeq ($(strip $(PLATFORM)), CHIBIOS)
ifeq ($(strip $(WS2812_DRIVER)), pwm)
OPT_DEFS += -DSTM32_DMA_REQUIRED=TRUE
endif
endif
endif

# add extra deps
Expand Down
1 change: 0 additions & 1 deletion keyboards/zvecr/split_blackpill/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,5 @@ FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart
WS2812_DRIVER = pwm
OPT_DEFS += -DSTM32_DMA_REQUIRED=TRUE

LAYOUTS = ortho_4x12
1 change: 0 additions & 1 deletion keyboards/zvecr/zv48/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
SPLIT_KEYBOARD = yes
SERIAL_DRIVER = usart
WS2812_DRIVER = pwm
OPT_DEFS += -DSTM32_DMA_REQUIRED=TRUE

DEFAULT_FOLDER = zvecr/zv48/f401

Expand Down

0 comments on commit 0810a33

Please sign in to comment.