FlashHC32F448.mac 269 B

12345678910111213141516
  1. setup()
  2. {
  3. ;
  4. }
  5. execUserPreload()
  6. {
  7. __message "----- Prepare hardware for Flashloader -----\n";
  8. setup();
  9. }
  10. execUserFlashInit() // Called by debugger before loading flash loader in RAM.
  11. {
  12. __message "----- Prepare hardware for Flashloader -----\n";
  13. setup();
  14. }