* 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>
25 lines
1.1 KiB
Makefile
25 lines
1.1 KiB
Makefile
#
|
|
# "main" pseudo-component makefile.
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := ./include ./driver/include
|
|
COMPONENT_SRCDIRS := .
|
|
COMPONENT_PRIV_INCLUDEDIRS := ./driver/include
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += ./driver/es8388 ./driver/es8374
|
|
COMPONENT_SRCDIRS += ./driver/es8388 ./driver/es8374
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += ./driver/es8311 ./driver/es7243
|
|
COMPONENT_SRCDIRS += ./driver/es8311 ./driver/es7243
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += ./driver/zl38063 ./driver/zl38063/api_lib ./driver/zl38063/example_apps ./driver/zl38063/firmware
|
|
COMPONENT_SRCDIRS += ./driver/zl38063 ./driver/zl38063/api_lib ./driver/zl38063/example_apps ./driver/zl38063/firmware
|
|
COMPONENT_ADD_LDFLAGS += -L$(COMPONENT_PATH)/driver/zl38063/firmware -lfirmware
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += ./driver/tas5805m ./driver/es7148
|
|
COMPONENT_SRCDIRS += ./driver/tas5805m ./driver/es7148
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS += ./driver/es7210 ./driver/es8156 ./driver/es7243e
|
|
COMPONENT_SRCDIRS += ./driver/es7210 ./driver/es8156 ./driver/es7243e
|