Lines Matching full:flash
8 ; valid values: flash, debug *
10 ; - loadTo if "flash", the application will be downloaded to SoC *
11 ; program flash by a flash programming routine; if "sram" it *
13 ; valid values: flash, sram *
14 ; default: flash *
15 ; - eraseFlash if set to "yes", the whole content in Flash device will be *
16 ; erased before the application is downloaded to either Flash *
19 ; - verifyFlash if set to "yes", verify after program application to Flash *
27 &loadTo=STRing.SCANAndExtract("&args","loadTo=","flash")
56 ; Only declares flash, does not execute flash programming
57 DO ~~/demo/arm/flash/s32k3.cmm PREPAREONLY
59 ; The prepare cmm is protecting flash area for HSE firmware, but
62 FLASH.CHANGEtype 0x007D4000--0x7F3FFF TARGET
66 FLASH.Erase ALL
69 IF ("&loadTo"=="flash")
71 ; Switch target flash to reprogramming state, erase virtual flash programming memory,
72 ; all target non-empty flash sectors are marked as pending, to be reprogrammed.
73 FLASH.ReProgram ALL /Erase
75 ; Write contents of the file to virtual Flash programming memory
78 ; Program only changed sectors to target flash and erase obsolete code
79 FLASH.ReProgram off
88 PRINT %ERROR "ERROR ! Failed to download the code to flash"
105 IF ("&command"=="flash")