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
9 changes: 5 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ MigrationBackup/
# Fody - auto-generated XML schema
FodyWeavers.xsd

Firmware/ConfigurationSetup/.gitignore
Firmware/ConfigurationSetup/.pio
Firmware/ConfigurationSetup/.vscode/*
!Firmware/ConfigurationSetup/.vscode/extensions.json
Firmware/NvsFlasherUtility/.gitignore
Firmware/NvsFlasherUtility/.pio
Firmware/NvsFlasherUtility/.vscode/*
!Firmware/NvsFlasherUtility/.vscode/extensions.json
!Firmware/NvsFlasherUtility/.vscode/tasks.json
95 changes: 95 additions & 0 deletions Firmware/NvsFlasherUtility/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "PlatformIO: Upload",
"type": "shell",
"command": "platformio run --target upload",
"options": {
"statusbar": {
"hide": true
}
},
"presentation": {
"reveal": "always",
"focus": true,
"panel": "shared"
}
},
{
"label": "Upload and Start Debug",
"type": "shell",
"command": "platformio",
"args": [
"run",
"-e",
"debug",
"--target",
"upload",
"&&",
"platformio",
"device",
"monitor"
],
"problemMatcher": [],
"options": {
"statusbar": {
"hide": true
}
},
"presentation": {
"panel": "shared",
"clear": true,
"reveal": "always",
"focus": true
}
},
{
"label": "LumenLab Installer - Upload (release)",
"type": "shell",
"command": "platformio",
"args": [
"run",
"-e",
"release",
"--target",
"upload",
"&&",
"platformio",
"device",
"monitor"
],
"problemMatcher": [
"$platformio"
],
"options": {
"statusbar": {
"hide": true
}
},
"presentation": {
"reveal": "always",
"focus": true,
"panel": "shared"
}
},
{
"label": "LumenLab Installer - Clean",
"type": "shell",
"command": "platformio run --target clean -e debug -e release",
"problemMatcher": [
"$platformio"
],
"options": {
"statusbar": {
"hide": true
}
},
"presentation": {
"reveal": "always",
"focus": true,
"panel": "shared"
}
}
]
}
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[platformio]
name = LumenLab Installation Tool
description = A Windows-only installation tool helper to easily write NVS memory preferences on demand for global reference and config for the LumenLab.
name = LumenLab NVS Flasher Utility Tool
description = A utility helper tool included within the LumenLab Installation Tool to easily write NVS memory settings for global configuration of the LumenLab.

[env]
upload_speed = 921600
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ void dumpAll()
}
}
const char *knownHighScores[] = {
"recall-high",
"phase-high"};
"high_recall",
"high_phase"};

for (auto key : knownHighScores)
{
Expand All @@ -190,7 +190,7 @@ void dumpAll()
continue;
}

auto value = preferences.getUInt(key, 0);
auto value = preferences.getString(key, "0");
Serial.print(key);
Serial.print("=");
Serial.println(value);
Expand Down
40 changes: 24 additions & 16 deletions LumenLabInstallerForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading