diff options
| author | Making Sound Machines <40341903+makingsoundmachines@users.noreply.github.com> | 2024-07-05 14:54:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-05 14:54:38 +0200 |
| commit | cc85473908d495cca23ddeedeed1cbf0bda87c49 (patch) | |
| tree | df82ab4a0790903637f055ecc1b13d2c6e8e2865 /sw/Core/Src/config.h | |
| parent | 2276f86b1b19d9e07fe84c23517b7d4d3fe0ffad (diff) | |
| parent | 3f9e6ddbab0f8fe770f2ad41f7ae79ee9c4fac6c (diff) | |
| download | plinky-cc85473908d495cca23ddeedeed1cbf0bda87c49.tar.gz | |
Merge pull request #19 from makingsoundmachines/main
Disables Merge Playback, adds Disable Autosave flag (off by default)
Diffstat (limited to 'sw/Core/Src/config.h')
| -rwxr-xr-x | sw/Core/Src/config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/Core/Src/config.h b/sw/Core/Src/config.h index 0314cb7..682230e 100755 --- a/sw/Core/Src/config.h +++ b/sw/Core/Src/config.h @@ -16,6 +16,8 @@ // THIS SHOULD NOT BE DEFINED FOR REAL BOARDS: //#define HALF_FLASH // pcbway fitted the wrong CPU, with only half the flash ram! this disables all use of the upper 512k, to enable testing +//#define DISABLE_AUTOSAVE // enables Demo Mode - changes are not written to flash. Disables ProgramPage() in params.h + // 0.7 - flashed onto first units // 0.8 - fix stereo pan when changing waveshape, and the broken wipe pattern // 0.9 - click encoder to zero value @@ -49,4 +51,7 @@ // 0.9z - fix shimmer click? thanks hippo! // 0.A - USB MIDI Sync // 0.A1 - HW SERIAL MIDI SYNC & More CCs -#define VERSION2 "v0.A3" +// 0.A2 - Allows for playing notes from the touch surface over a recorded sequence. Still buggy. In touch.h #define MERGE_PLAYBACK 1 +// 0.A3 - Fixes a USB bug in which some hosts wouldn't recognize Plinky. New startup sequence is plinky_init(), then midiinit(). +// 0.A4 - Disabled MERGE_PLAYBACK in touch.h. DISABLE_AUTOSAVE flag enables Demo Mode - changes are not written to flash. Disables ProgramPage() in params.h +#define VERSION2 "v0.A4" |
