Refactor: UIThread trimming

This commit is contained in:
Dejvino
2026-03-06 21:47:33 +01:00
parent 71583bdb4e
commit f979c2c5d7
6 changed files with 342 additions and 293 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef PERSISTENCE_H
#define PERSISTENCE_H
#include "TrackerTypes.h"
#include "config.h"
class Persistence {
public:
static void saveSequence(bool quiet);
static bool loadSequence();
static void savePatch(int bank, int slot);
static void loadPatch(int bank, int slot, Step (*scratchBuffer)[NUM_STEPS]);
static void factoryReset();
};
#endif