1d6347796d
* HC32F460 supported Co-authored-by: JamieTx <yangjp24@126.com> Co-authored-by: Jamie <48308473+JamieTx@users.noreply.github.com>
17 lines
269 B
Plaintext
17 lines
269 B
Plaintext
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();
|
|
}
|
|
|