Add BT1035 pairing and station presets (fw 0.7.0).

Expose discoverable mode and A2DP control over REST, add persisted
DAB/FM preset list with web UI, and document gaps in docs/TODO.md.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-06 17:42:11 +02:00
co-authored by Cursor
parent a08a9c19ee
commit 82c9f401da
46 changed files with 2819 additions and 33 deletions
+16
View File
@@ -14,6 +14,8 @@
#include "core/CompanionChipStatus.hpp"
#include "bt1035/Bt1035Driver.hpp"
#include <expected>
namespace audio {
@@ -108,6 +110,20 @@ public:
* @date 2026-07-06
*/
[[nodiscard]] static core::CompanionChipStatus companionChipStatus() noexcept;
/**
* @brief bt1035Driver — borrow the BT1035 driver after boot.
*
* @dname bt1035Driver
* @return Reference to the static Bt1035Driver instance.
* @pubstate reads static storage initialised by boot().
*
* Valid only after a successful boot() call in the same process.
*
* @author Michele Bigi
* @date 2026-07-06
*/
[[nodiscard]] static bt1035::Bt1035Driver& bt1035Driver();
};
} // namespace hardware