* upgrade to IDF v5.1.1
* add new synchronization implementation, use sample stuffing / removal to keep up sync
* use big DMA buffer for I2S and improve sync
* Add DAC TAS5805M as custom board
* add wifi credential reset
o press reset button (nRESET pin) 3 times
but wait about 1s between button presses
the button press counter is reset 5s after boot
* Add support for PT8211 DAC (#78)
* upgrade ethernet interface to IDF v5 (#84)
* port official example of ethernet for IDF v5.x
* Fix cmake if guard for ethernet
Signed-off-by: Karl Osterseher <karli_o@gmx.at>
Co-authored-by: DerPicknicker <64746593+DerPicknicker@users.noreply.github.com>
Co-authored-by: whc2001 <ianwang0122@outlook.com>
41 lines
941 B
Makefile
41 lines
941 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_PCM5102A
|
|
COMPONENT_ADD_INCLUDEDIRS += ./pcm5102a/include
|
|
COMPONENT_SRCDIRS += ./pcm5102a
|
|
endif
|
|
|
|
ifdef CONFIG_DAC_MA120X0
|
|
COMPONENT_ADD_INCLUDEDIRS += ./ma120x0/include
|
|
COMPONENT_SRCDIRS += ./ma120x0
|
|
endif
|
|
|
|
ifdef CONFIG_DAC_MAX98357
|
|
COMPONENT_ADD_INCLUDEDIRS += ./max98357/include
|
|
COMPONENT_SRCDIRS += ./max98357
|
|
endif
|
|
|
|
ifdef CONFIG_DAC_TAS5805M
|
|
COMPONENT_ADD_INCLUDEDIRS += ./tas5805m/include
|
|
COMPONENT_SRCDIRS += ./tas5805m
|
|
endif
|
|
|
|
ifdef CONFIG_DAC_PT8211
|
|
COMPONENT_ADD_INCLUDEDIRS += ./pt8211/include
|
|
COMPONENT_SRCDIRS += ./pt8211
|
|
endif
|
|
|
|
endif
|