Lines Matching full:flash
9 ; valid values: flash, debug *
11 ; - loadTo if "flash", the application will be downloaded to SoC *
12 ; program flash by a flash programming routine; if "sram" it *
14 ; valid values: flash, sram *
15 ; default: flash *
16 ; - eraseFlash if set to "yes", the whole content in Flash device will be *
17 ; erased before the application is downloaded to either Flash *
20 ; - verifyFlash if set to "yes", verify after program application to Flash *
28 &loadTo=STRing.SCANAndExtract("&args","loadTo=","flash")
54 ; Only declares flash, does not execute flash programming
55 DO ~~/demo/arm/flash/s32k.cmm PREPAREONLY
59 FLASH.Erase ALL
62 IF ("&loadTo"=="flash")
64 ; Switch target flash to reprogramming state, erase virtual flash programming memory,
65 ; all target non-empty flash sectors are marked as pending, to be reprogrammed.
66 FLASH.ReProgram ALL /Erase
68 ; Write contents of the file to virtual Flash programming memory
71 ; Program only changed sectors to target flash and erase obsolete code
72 FLASH.ReProgram off
81 PRINT %ERROR "Failed to download the code to flash"
97 IF ("&command"=="flash")