Build-system, config, usb, and CI wiring on top of upstream's
v0.6.0-hotfix tree. Build will still fail until Phase C+D land bt.h
accessors that oled.cpp references; that's expected mid-rebase.
CMakeLists.txt: add src/oled.cpp + src/slots.cpp to add_executable,
link hardware_spi, restore OUTPUT_NAME ds5-bridge-oled.
src/config.h: append the 4 OLED Edition Config_body fields
(current_slot + auto_haptics_enable/gain/lowpass). Preserves
upstream's field order for the first 8 fields.
src/config.cpp:
- speaker_volume validity default -100 dB → 0 dB (footgun fix)
- 4 new validity guards for the appended fields with sensible
defaults (Fallback / 100 % / 160 Hz / slot 0)
- config_default() impl (was declared in upstream's config.h since
v0.5.4 but never defined; the OLED Edition's "Reset to defaults"
Settings item calls it)
src/usb.cpp: drop the UAC1 SET_CUR Volume → flash-config sync that
let PipeWire/Pulse silently override the user's saved Spk Vol on
every device reconnect. Borrowed from loteran/DS5Dongle commit
03fa1e4.
src/usb_descriptors.cpp: restore iSerialNumber = STRID_SERIAL.
Upstream's commit e79c762 zeroed it to work around SpecialK (#32),
but that broke Windows device identity (#100) — users lost
per-device volume / app preferences when moving USB ports. The
OLED Edition prioritizes Windows device-identity stability for
the broader user base over SpecialK compat for a narrower one.
.github/workflows/{build,release}.yml: artifact filenames use
ds5-bridge-oled.uf2 (and -debug / -picow variants) per the
OUTPUT_NAME rebrand.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
160 lines
5.3 KiB
C++
160 lines
5.3 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 = 64;
|
|
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 = 1; // Fallback default
|
|
printf("[Config] auto_haptics_enable invalid, defaulting to 1 (Fallback)\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->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();
|
|
}
|