Skip to content

Commit

Permalink
Fixed renaming the defines for audioeffects incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
gamblor21 committed Oct 14, 2024
1 parent e3228d0 commit 064c2d8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ports/raspberrypi/mpconfigport.mk
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ CIRCUITPY_PICODVI ?= 1
CIRCUITPY_TOUCHIO = 0

# Audio effects
CIRCUITPY_AUDIODELAYS ?= 1
CIRCUITPY_AUDIOEFFECTS ?= 1
endif

INTERNAL_LIBM = 1
Expand Down
3 changes: 2 additions & 1 deletion py/circuitpy_mpconfig.mk
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ CFLAGS += -DCIRCUITPY_AUDIOCORE_DEBUG=$(CIRCUITPY_AUDIOCORE_DEBUG)
CIRCUITPY_AUDIOMP3 ?= $(call enable-if-all,$(CIRCUITPY_FULL_BUILD) $(CIRCUITPY_AUDIOCORE))
CFLAGS += -DCIRCUITPY_AUDIOMP3=$(CIRCUITPY_AUDIOMP3)

CIRCUITPY_AUDIODELAYS ?= 0
CIRCUITPY_AUDIOEFFECTS ?= 0
CIRCUITPY_AUDIODELAYS ?= $(CIRCUITPY_AUDIOEFFECTS)
CFLAGS += -DCIRCUITPY_AUDIODELAYS=$(CIRCUITPY_AUDIODELAYS)

CIRCUITPY_AURORA_EPAPER ?= 0
Expand Down

0 comments on commit 064c2d8

Please sign in to comment.