- minimize RAM usage of all components - use both IRAM and DRAM in player component so we can buffer up to 1s on modules without SPI RAM - support fragemented pcm chunks so we can use all available RAM if there isn't a big enough block available but still enough HEAP - reinclude all components from jorgen's master branch - add custom i2s driver to get a precise timing of initial sync - change wrong usage of esp_timer for latency measurement of snapcast protocol - add player component
21 lines
495 B
Makefile
21 lines
495 B
Makefile
#
|
|
# "main" pseudo-component makefile.
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
|
|
ifdef CONFIG_AUDIO_BOARD_CUSTOM
|
|
COMPONENT_ADD_INCLUDEDIRS += ./generic_board/include
|
|
COMPONENT_SRCDIRS += ./generic_board
|
|
|
|
ifdef CONFIG_DAC_PCM51XX
|
|
COMPONENT_ADD_INCLUDEDIRS += ./pcm51xx/include
|
|
COMPONENT_SRCDIRS += ./pcm51xx
|
|
endif
|
|
|
|
ifdef CONFIG_DAC_MA120X0
|
|
COMPONENT_ADD_INCLUDEDIRS += ./ma120x0/include
|
|
COMPONENT_SRCDIRS += ./ma120x0
|
|
endif
|
|
|
|
endif
|