The DS5 DAC and the USB host audio clock are independent ~48kHz crystals; the residual ppm drift slowly underruns the controller's audio buffer = the periodic crackle. The speaker path is 1:1 (no resampler), so it delivered exactly the host's 48kHz; this adds a fine rate trim that delivers 48000+(trim) samples/s via a zero-order-hold duplicate/drop accumulator to null the drift. New speaker_rate_trim config field (stored 0..200 = -100..+100 Hz, default 100 = 0 Hz = exact no-op since 48000/48000 is exact in double). Swept on the OLED Settings screen (new 'SpkTrim' item) with the D-pad <</>> at 1 Hz/step. Reset/Wipe items shifted to idx 16/17 (named constants, action handlers auto-follow). Diagnostic intent: if one value silences the crackle and HOLDS, drift was a static offset and this is the fix; if it nulls then creeps back, that proves dynamic drift needing adaptive resampling. Tune with scripts/sine_ch12.py + time the crackle interval. NOT YET BUILT OR HIL-TESTED. Experimental branch only. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
190 lines
7.2 KiB
C++
190 lines
7.2 KiB
C++
//
|
|
// Created by awalol on 2026/5/4.
|
|
//
|
|
|
|
#include "config.h"
|
|
|
|
#include <cmath>
|
|
#include <cstring>
|
|
|
|
#include "utils.h"
|
|
#include "hardware/flash.h"
|
|
#include "hardware/sync.h"
|
|
#include "pico/cyw43_arch.h"
|
|
|
|
constexpr uint32_t CONFIG_MAGIC = 0x66ccff00;
|
|
constexpr uint16_t CONFIG_VERSION = 1;
|
|
constexpr uint32_t CONFIG_FLASH_OFFSET = PICO_FLASH_SIZE_BYTES - FLASH_SECTOR_SIZE;
|
|
static Config config{};
|
|
bool is_dse = false;
|
|
|
|
// 编译期保护
|
|
// 判断Config结构体是否能放进flash 256bytes
|
|
static_assert(sizeof(Config) <= FLASH_PAGE_SIZE);
|
|
// 配置区起始地址必须按 flash sector 对齐。
|
|
static_assert(CONFIG_FLASH_OFFSET % FLASH_SECTOR_SIZE == 0);
|
|
|
|
uint32_t calc_config_crc(const Config &con) {
|
|
return crc32(reinterpret_cast<const uint8_t *>(&con.body), sizeof(Config_body));
|
|
}
|
|
|
|
const Config *flash_config() {
|
|
return reinterpret_cast<const Config *>(XIP_BASE + CONFIG_FLASH_OFFSET);
|
|
}
|
|
|
|
void config_valid() {
|
|
// valid config and set default value
|
|
if (config.magic != CONFIG_MAGIC) {
|
|
config.magic = CONFIG_MAGIC;
|
|
printf("[Config] Config Magic Header is invalid\n");
|
|
}
|
|
if (config.version != CONFIG_VERSION) {
|
|
config.version = CONFIG_VERSION;
|
|
printf("[Config] Config Version is invalid\n");
|
|
}
|
|
if (config.size != sizeof(Config_body)) {
|
|
config.size = sizeof(Config_body);
|
|
printf("[Config] Config Body size is invalid\n");
|
|
}
|
|
auto body = &config.body;
|
|
if (std::isnan(body->haptics_gain) || body->haptics_gain < 1.0f || body->haptics_gain > 2.0f) {
|
|
body->haptics_gain = 1.0f;
|
|
printf("[Config] Haptics Gain value is invalid\n");
|
|
}
|
|
if (std::isnan(body->speaker_volume) || body->speaker_volume < -100 || body->speaker_volume > 0) {
|
|
body->speaker_volume = 0; // OLED Edition: 0 dB default (unity); -100 would be silent
|
|
printf("[Config] Speaker Volume is invalid, defaulting to 0 dB\n");
|
|
}
|
|
if (body->inactive_time < 5 || body->inactive_time > 60) {
|
|
body->inactive_time = 30;
|
|
printf("[Config] Inactive time is invalid\n");
|
|
}
|
|
if (body->disable_inactive_disconnect > 1) {
|
|
body->disable_inactive_disconnect = 0;
|
|
printf("[Config] disable_auto_disconnect is invalid\n");
|
|
}
|
|
if (body->disable_pico_led > 1) {
|
|
body->disable_pico_led = 0;
|
|
printf("[Config] disable_pico_led is invalid\n");
|
|
}
|
|
if (body->polling_rate_mode > 2) {
|
|
body->polling_rate_mode = 0;
|
|
printf("[Config] polling_rate_mode is invalid\n");
|
|
}
|
|
if (body->audio_buffer_length < 16 || body->audio_buffer_length > 128) {
|
|
body->audio_buffer_length = 16; // low buffer avoids the DS5's periodic re-buffer gap
|
|
printf("[Config] haptics_buffer_length is invalid\n");
|
|
}
|
|
if (body->controller_mode > 2) {
|
|
body->controller_mode = 2;
|
|
printf("[Config] controller_mode is invalid\n");
|
|
}
|
|
if (body->current_slot >= 4) {
|
|
body->current_slot = 0;
|
|
printf("[Config] current_slot is invalid\n");
|
|
}
|
|
if (body->auto_haptics_enable > 3) {
|
|
body->auto_haptics_enable = 0; // default OFF (was 1/Fallback) — it derives erratic rumble from the speaker
|
|
printf("[Config] auto_haptics_enable invalid, defaulting to 0 (Off)\n");
|
|
}
|
|
if (body->auto_haptics_gain > 200) {
|
|
body->auto_haptics_gain = 100;
|
|
printf("[Config] auto_haptics_gain invalid, defaulting to 100\n");
|
|
}
|
|
if (body->auto_haptics_lowpass > 3) {
|
|
body->auto_haptics_lowpass = 1; // 160 Hz
|
|
printf("[Config] auto_haptics_lowpass invalid, defaulting to 1 (160 Hz)\n");
|
|
}
|
|
if (body->lightbar_mode > 8) { // 0..7 OLED modes + 8 = HOST passthrough (default)
|
|
body->lightbar_mode = 8;
|
|
printf("[Config] lightbar_mode invalid, defaulting to 8 (HOST passthrough)\n");
|
|
}
|
|
// lb_fav_{r,g,b} need no validation — any 0..255 is a legal color, and an
|
|
// erased flash sector (0xFF) yields 4 white favorites, a usable default.
|
|
if (body->screen_dim_timeout > 250) { // 0xFF erased / out of range → default
|
|
body->screen_dim_timeout = 2; // mirrors the original 2-min dim tier
|
|
printf("[Config] screen_dim_timeout invalid, defaulting to 2 min\n");
|
|
}
|
|
if (body->screen_off_timeout > 250) {
|
|
body->screen_off_timeout = 15; // mirrors the original 15-min off tier
|
|
printf("[Config] screen_off_timeout invalid, defaulting to 15 min\n");
|
|
}
|
|
if (body->bt_mic_enable > 1) { // 0xFF erased / upgrade → default ON
|
|
body->bt_mic_enable = 1;
|
|
printf("[Config] bt_mic_enable invalid, defaulting to 1 (on)\n");
|
|
}
|
|
if (body->screen_brightness > 3) { // kBrightLevels has 4 entries (0..3)
|
|
body->screen_brightness = 0; // full brightness
|
|
printf("[Config] screen_brightness invalid, defaulting to 0 (full)\n");
|
|
}
|
|
if (body->controller_wakes_display > 1) { // 0xFF erased / upgrade → default ON
|
|
body->controller_wakes_display = 1;
|
|
printf("[Config] controller_wakes_display invalid, defaulting to 1 (on)\n");
|
|
}
|
|
if (body->speaker_rate_trim > 200) { // 0xFF erased / upgrade → 0 Hz (centered)
|
|
body->speaker_rate_trim = 100; // 100 encodes 0 Hz; actual trim = stored - 100
|
|
printf("[Config] speaker_rate_trim invalid, defaulting to 100 (0 Hz)\n");
|
|
}
|
|
if (body->config_version != CONFIG_VERSION) {
|
|
body->config_version = CONFIG_VERSION;
|
|
printf("[Config] Warning: Config may breaking change\n");
|
|
}
|
|
}
|
|
|
|
void config_load() {
|
|
memcpy(&config, flash_config(), sizeof(Config));
|
|
|
|
config_valid();
|
|
}
|
|
|
|
// Reset RAM-resident config body to firmware defaults. Caller must
|
|
// config_save() to persist. Filling with 0xFF mirrors the byte pattern
|
|
// of a freshly-erased flash sector, so every field fails validity and
|
|
// gets re-initialized to its documented default by config_valid().
|
|
void config_default() {
|
|
memset(&config.body, 0xFF, sizeof(config.body));
|
|
config_valid();
|
|
}
|
|
|
|
bool config_save() {
|
|
config.crc32 = calc_config_crc(config);
|
|
alignas(4) uint8_t page[FLASH_PAGE_SIZE];
|
|
memset(page, 0xff, sizeof(page));
|
|
memcpy(page, &config, sizeof(Config));
|
|
|
|
const uint32_t interrupts = save_and_disable_interrupts();
|
|
flash_range_erase(CONFIG_FLASH_OFFSET, FLASH_SECTOR_SIZE);
|
|
flash_range_program(CONFIG_FLASH_OFFSET, page, sizeof(page));
|
|
restore_interrupts(interrupts);
|
|
|
|
Config verify{};
|
|
memcpy(&verify, flash_config(), sizeof(verify));
|
|
const auto verify_crc32 = calc_config_crc(verify);
|
|
if (verify_crc32 == config.crc32) {
|
|
printf("[Config] Config write flash verify success\n");
|
|
return true;
|
|
}
|
|
printf("[Config] Config write flash verify failed\n");
|
|
return false;
|
|
}
|
|
|
|
const Config_body& get_config() {
|
|
return config.body;
|
|
}
|
|
|
|
void set_config(const uint8_t *new_config, const uint16_t len) {
|
|
const auto copy_len = len < sizeof(Config_body) ? len : sizeof(Config_body);
|
|
memcpy(&config.body, new_config, copy_len);
|
|
config_valid();
|
|
if (config.body.disable_pico_led) {
|
|
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, false);
|
|
}else {
|
|
cyw43_arch_gpio_put(CYW43_WL_GPIO_LED_PIN, true);
|
|
}
|
|
}
|
|
|
|
void set_config(const Config_body &new_config) {
|
|
config.body = new_config;
|
|
config_valid();
|
|
}
|