Implement Bt1035Driver AT init (AT+AUXCFG=1), core AT parser with host tests, wire boot into HardwareBootstrap, and document DAB/FM tuning workflows in ch-si4684. Co-authored-by: Cursor <cursoragent@cursor.com>
30 lines
848 B
CMake
30 lines
848 B
CMake
idf_component_register(
|
|
SRCS
|
|
"src/FirmwareVersion.cpp"
|
|
"src/HealthStatus.cpp"
|
|
"src/HealthStatusJson.cpp"
|
|
"src/Secret.cpp"
|
|
"src/WifiSsid.cpp"
|
|
"src/WifiCredentials.cpp"
|
|
"src/WifiProvisionJson.cpp"
|
|
"src/EmbeddedBlobReader.cpp"
|
|
"src/TunerJson.cpp"
|
|
"src/FrequencyKHz.cpp"
|
|
"src/GainDb.cpp"
|
|
"src/FrequencyHz.cpp"
|
|
"src/EqBandIndex.cpp"
|
|
"src/BiquadCoefficients.cpp"
|
|
"src/BiquadDesign.cpp"
|
|
"src/MixerState.cpp"
|
|
"src/EqProfile.cpp"
|
|
"src/EnhanceLevel.cpp"
|
|
"src/AudioEnhancements.cpp"
|
|
"src/EnhancementsDesign.cpp"
|
|
"src/AudioProfile.cpp"
|
|
"src/AudioProfileJson.cpp"
|
|
"src/Bt1035At.cpp"
|
|
INCLUDE_DIRS "include"
|
|
)
|
|
|
|
target_compile_features(${COMPONENT_LIB} PUBLIC cxx_std_23)
|