Skip to content

Commit 7097c02

Browse files
committed
Fix run from RAM option
Signed-off-by: paulober <[email protected]>
1 parent 96b122c commit 7097c02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ var exampleSupportedBoards = [];
315315
}
316316

317317
// code-gen options
318-
const runFromRamCodeGen = document.getElementById('run-from-ram-code-gen-cblist').checked;
318+
const runFromRAMCodeGen = document.getElementById('run-from-ram-code-gen-cblist').checked;
319319
const nameEntryPointProjectName = document.getElementById('entry-project-name-code-gen-cblist').checked;
320320
const cppCodeGen = document.getElementById('cpp-code-gen-cblist').checked;
321321
const cppRttiCodeGen = document.getElementById('cpp-rtti-code-gen-cblist').checked;
@@ -355,7 +355,7 @@ var exampleSupportedBoards = [];
355355
picoWireless: picoWireless,
356356

357357
// code-gen options
358-
runFromRam: runFromRamCodeGen,
358+
runFromRAM: runFromRAMCodeGen,
359359
entryPointProjectName: nameEntryPointProjectName,
360360
cpp: cppCodeGen,
361361
cppRtti: cppRttiCodeGen,

0 commit comments

Comments
 (0)