port to platformio

This commit is contained in:
2021-03-29 01:10:55 -07:00
parent 9a3bf84214
commit a6534bcb20
131 changed files with 1537 additions and 1148 deletions

14
src/BootOptions.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
struct BootOptions {
static void initPins();
BootOptions();
void waitForRelease();
bool isSetup = false;
bool isSerial = false;
bool isFlash = false;
bool lastBootWasFlash = false;
};