Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); this pr
uses [Semantic Versioning](https://semver.org/) (`vMAJOR.MINOR.PATCH`).

## [Unreleased]
- **Removed the "hold both footswitches → DFU" gesture.** Enter DFU for flashing over MIDI
(CC 119 ≥ 64, e.g. from Propagator) or with the Daisy Seed's BOOT+RESET buttons. Frees the
footswitch combinations for upcoming features (e.g. presets).
- **Lower audio-CPU on the voice path** (no audible change): the per-voice filter only
recomputes its coefficients when cutoff / resonance / filter-type actually change, so
static-filter patches skip a `sinf`+`powf` (Svf) or coefficient polynomial (Moog) every
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ Spore currently targets one platform:
| **Footsw 1** | **Tap** = engage/bypass · **Hold** = edit FX (knobs become FX controls) |
| **Footsw 2** | Mode action - Granular **freeze**, Generative **re-seed** |
| **LED 1 / 2**| Engaged state (mid = editing FX) / active FX |
| Hold **both** footswitches 2s | Reboot to **DFU** for flashing |

Enter DFU for flashing over MIDI (**CC 119** ≥ 64, e.g. from Propagator) or with the Daisy
Seed's **BOOT + RESET** buttons.

Audio: Hothouse stereo **in** and **out** (1/4" jacks). Synth & Generative ignore the
input (they generate); Granular records and reuses it.
Expand Down
2 changes: 1 addition & 1 deletion docs/firmware-architecture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion scripts/flash.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build + flash over USB DFU (no programmer needed).
# Put the device in the bootloader first: hold BOOT, tap RESET
# (or hold BOTH footswitches for 2s to trigger the DFU reboot gesture).
# (or send MIDI CC 119 >= 64 from the editor to reboot into DFU).
$ErrorActionPreference = "Stop"
. (Join-Path $PSScriptRoot "env.ps1")
$root = Split-Path $PSScriptRoot -Parent
Expand Down
2 changes: 1 addition & 1 deletion scripts/flash.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Build + flash over USB DFU (no programmer needed).
# Put the device in the bootloader first: hold BOOT, tap RESET
# (or hold BOTH footswitches for 2s to trigger the DFU reboot gesture).
# (or send MIDI CC 119 >= 64 from the editor to reboot into DFU).
set -euo pipefail
. "$(dirname "$0")/env.sh"
cd "$(dirname "$0")/.."
Expand Down
2 changes: 1 addition & 1 deletion src/config/params.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// ... or FX params while editing (hold FOOTSW 1) -- see `params::fx`
// FOOTSW 1 : tap = engage/bypass | HOLD = edit FX (knobs -> FX, soft-takeover)
// FOOTSW 2 : mode action (Granular = freeze, Generative = re-seed)
// (hold BOTH footswitches 2s -> reboot to DFU for flashing)
// (DFU for flashing: MIDI CC 119 >= 64, or the Seed's BOOT+RESET buttons)
// =============================================================================
#pragma once

Expand Down
5 changes: 2 additions & 3 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// TOGGLE 3 : FX (UP=off MIDDLE=delay DOWN=reverb)
// FOOTSW 1 : tap = engage/bypass | HOLD = edit FX (knobs -> FX, soft-takeover)
// FOOTSW 2 : mode action (freeze / re-seed)
// Hold BOTH footswitches 2s -> reboot to DFU for flashing.
// Enter DFU for flashing over MIDI (CC 119 >= 64) or via the Seed's BOOT+RESET buttons.
// =============================================================================
#include "daisy_seed.h"
#include "hothouse.h"
Expand Down Expand Up @@ -287,7 +287,7 @@ int main() {
// (Motion IMU is tier-2 / deferred -- see io/imu.h.)
g_sensors.Init(hw); // re-inits ADC to add analog input on A0/D15

// Footswitch LEDs (pins 22/23 are free outside the DFU flash gesture).
// Footswitch LEDs.
led1.Init(hw.seed.GetPin(Hothouse::LED_1), false);
led2.Init(hw.seed.GetPin(Hothouse::LED_2), false);

Expand Down Expand Up @@ -318,7 +318,6 @@ int main() {
led2.Update();

hw.DelayMs(1); // poll USB MIDI often so the RX FIFO never backs up (dropped notes)
hw.CheckResetToBootloader();
}
return 0;
}
Loading