Streaming (main feature this session): - New WebRadioConfig/WebRadioJson core types, ISecureStore-backed persistence - New webradio::WebRadioService (thread-safe live config) + GET/POST /api/streaming - web_radio_stream task now runtime-toggleable (no reboot), no hardcoded URL - Content-Type diagnostic: warns clearly when a URL is a webpage, not an audio stream Boot cleanup: - Removed boot-time auto FM/DAB tune, auto-beep, and the (now-concluded) Si4684 crystal IBIAS/CTUN empirical sweep from main.cpp — tuning/beep are on-demand via the existing REST API only Web UI: - Modernized styling (cards, gradients, toggle switches, light/dark theme) - New Stream tab wired to /api/streaming Fixes found via real idf.py build (not just clangd): - Restored wrongly-removed si4684/Si4684Tuner.hpp include in main.cpp - Fixed MP3Decode() argument types in web_radio_stream.cpp (unsigned char**/int*) Quality-gate fixes: - Host-test stub headers (esp_log.h, freertos/*) so TunerService.cpp's scanForStation logging/pacing compiles for station_service_test / integration_service_test instead of running stale binaries - Added WifiScanner and WebRadioService manual sections; filled in missing Doxygen docs on BluetoothService, i2s_sdata_probe, test_firmware, Bt1035At - Ignore clangd's .cache/ index directory Also includes prior uncommitted work carried in the tree: Wi-Fi/Bluetooth device scan REST API and UI (WifiScanner, BT scan), SigmaStudio TCP bridge, and the current ADAU1701 SigmaStudio DSP program export. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
47 lines
1.4 KiB
CMake
47 lines
1.4 KiB
CMake
idf_component_register(
|
|
SRCS
|
|
"src/FirmwareVersion.cpp"
|
|
"src/HealthStatus.cpp"
|
|
"src/HealthStatusJson.cpp"
|
|
"src/Eui48.cpp"
|
|
"src/DeviceIdentity.cpp"
|
|
"src/Secret.cpp"
|
|
"src/WifiSsid.cpp"
|
|
"src/WifiCredentials.cpp"
|
|
"src/WifiProvisionJson.cpp"
|
|
"src/WifiScanJson.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"
|
|
"src/StationName.cpp"
|
|
"src/PresetSlot.cpp"
|
|
"src/Station.cpp"
|
|
"src/StationList.cpp"
|
|
"src/StationListJson.cpp"
|
|
"src/BluetoothJson.cpp"
|
|
"src/BroadcastLabel.cpp"
|
|
"src/RdsMetadataAccumulator.cpp"
|
|
"src/DabDynamicLabelAccumulator.cpp"
|
|
"src/DspProgram.cpp"
|
|
"src/RegisterWrite.cpp"
|
|
"src/DspProgramBlob.cpp"
|
|
"src/OtaAppDescriptor.cpp"
|
|
"src/WebRadioJson.cpp"
|
|
INCLUDE_DIRS "include"
|
|
)
|
|
|
|
target_compile_features(${COMPONENT_LIB} PUBLIC cxx_std_23)
|