Skip to content

Commit

Permalink
Fix run from RAM option
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Dec 5, 2024
1 parent 96b122c commit 7097c02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ var exampleSupportedBoards = [];
}

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

// code-gen options
runFromRam: runFromRamCodeGen,
runFromRAM: runFromRAMCodeGen,
entryPointProjectName: nameEntryPointProjectName,
cpp: cppCodeGen,
cppRtti: cppRttiCodeGen,
Expand Down

0 comments on commit 7097c02

Please sign in to comment.