Browse Source
-normalize `env` and `board` to lowercase naming convention. -make board `name` follow descriptive convention. -implement `-fsingle-precision-constant` compile optimization per https://github.com/MarlinFirmware/Marlin/pull/11178#issuecomment-401673901 -fix typo in 5DPRINT entry.pull/1/head
Dave Johnson
7 years ago
committed by
Scott Lahteine
3 changed files with 13 additions and 13 deletions
@ -1,14 +1,14 @@ |
|||||
{ |
{ |
||||
"build": { |
"build": { |
||||
"core": "teensy", |
"core": "teensy", |
||||
"extra_flags": "-DTEENSY2PP", |
"extra_flags": "-DTEENSY2PP -fsingle-precision-constant", |
||||
"f_cpu": "16000000L", |
"f_cpu": "16000000L", |
||||
"mcu": "at90usb1286" |
"mcu": "at90usb1286" |
||||
}, |
}, |
||||
"frameworks": [ |
"frameworks": [ |
||||
"arduino" |
"arduino" |
||||
], |
], |
||||
"name": "at90USB1286.json", |
"name": "Atmel AT90USB1286 based", |
||||
"upload": { |
"upload": { |
||||
"maximum_ram_size": 8192, |
"maximum_ram_size": 8192, |
||||
"maximum_size": 122880, |
"maximum_size": 122880, |
Loading…
Reference in new issue