4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-22 15:37:53 +08:00

17 lines
269 B
Plaintext
Raw Normal View History

setup()
{
;
}
execUserPreload()
{
__message "----- Prepare hardware for Flashloader -----\n";
setup();
}
execUserFlashInit() // Called by debugger before loading flash loader in RAM.
{
__message "----- Prepare hardware for Flashloader -----\n";
setup();
}