如果编程器采用 RV 则为<br /> IF EN_CRP <> 0<br /> IF .> 0x1fc <br /> INFO 1,"
The data at 0x000001fc must 0x87654321.Please delete some source before this line!"<br /> ENDIF <br />CrpData<br /> WHILE . < 0x1fc<br /> NOP<br /> WEND<br />CrpData1<br /> DCD 0x87654321<br /> ENDIF<br /><br />如果编译器为ARMC,则为 <br />#if OS_EN_CRP>0 //当为1时,对芯片进行加密<br />DWORD const os_en_crp __at 0x000001fc = 0x87654321;<br />#endif<br /><br />好像最新版RV,也运行 AT 指个令吧,如果那样,在RV中,也和上面一样
|