From 3f9e6ddbab0f8fe770f2ad41f7ae79ee9c4fac6c Mon Sep 17 00:00:00 2001 From: Making Sound Machines Date: Fri, 5 Jul 2024 14:46:11 +0200 Subject: Disables Merge Playback, adds Disable Autosave flag (off by default) Cleaned up build files to adhere to this naming convention - plink0A3.bin plink0A3.uf2 so one can match the versions. Deleted some extra build files to the root - deleted CURRENT.uf2 (which could be any version) deleted plinkyblack.bin (which can't be flashed on its own) Plinky V0.A3.zip (different naming convention) -> took CURRENT.UF2 from the zip and renamed it plink0A3.uf2 Disabled MERGE_PLAYBACK in touch.h Added a define DISABLE_AUTOSAVE. It's commented out by default. It enables Superbooth Demo Mode: changes are not written to flash, a reboot restores the device completely. Disables ProgramPage() in params.h. Added version descriptions in config.h --- sw/Core/Src/touch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw/Core/Src/touch.h') diff --git a/sw/Core/Src/touch.h b/sw/Core/Src/touch.h index 6df81d7..b62313c 100755 --- a/sw/Core/Src/touch.h +++ b/sw/Core/Src/touch.h @@ -745,7 +745,7 @@ void finger_synth_update(int fi) { if (!want_recording_on) last_rec_step = 255; } -#define MERGE_PLAYBACK 1 +#define MERGE_PLAYBACK 0 if (MERGE_PLAYBACK) { // read from pattern FingerRecord *fr = readpattern(fi); -- cgit v1.2.3