?? stm32_flash_xram.mac
字號(hào):
//*
//*********************************************************************************************************
//* File : stm32f10x_flash.mac
//* Describe:
//* By : SuperMario
//* Compiler: IAR ARM V5.11
//* Version : 1.0V
//*********************************************************************************************************
//execUserPreload Called after communication with the target system is established
// but before downloading the target application.
// Implement this macro to initialize memory locations and/or
// registers which are vital for loading data properly.
//execUserFlashInit Called once before the flash loader is downloaded to RAM.
// Implement this macro typically for setting up the memory map
// required by the flash loader. This macro is only called when you are
// programming flash, and it should only be used for flash loader
// functionality.
//execUserSetup Called once after the target application is downloaded.
// Implement this macro to set up the memory map, breakpoints,
// interrupts, register macro files, etc.
//execUserFlashReset Called once after the flash loader is downloaded to RAM, but
// before execution of the flash loader. This macro is only called when
// you are programming flash, and it should only be used for flash
// loader functionality.
//execUserReset Called each time the reset command is issued.
// Implement this macro to set up and restore data.
//execUserExit Called once when the debug session ends.
// Implement this macro to save status data etc.
//execUserFlashExit Called once when the debug session ends.
// Implement this macro to save status data etc. This macro is useful
// for flash loader functionality.
//*********************************************************************************************************
/*********************************************************************
*
* execUserReset() : JTAG set initially to Full Speed
*/
execUserReset() {
__message "執(zhí)行復(fù)位命令...";
__emulatorSpeed(0); // Set JTAG speed to full speed
}
/*********************************************************************
*
* execUserPreload() : JTAG set initially to 32kHz
*/
execUserPreload() {
__message "編譯器執(zhí)行Flash加載預(yù)處理...";
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -