load2.pde 275 B

1234567891011121314151617181920
  1. #include <SPI.h>
  2. #include <GD.h>
  3. #include "flashimg.h"
  4. #include "loadcommon.h"
  5. void setup()
  6. {
  7. common_setup(2);
  8. page = STAGEBASE + P2OFF;
  9. GD_uncompress(part2);
  10. common_show_status();
  11. GD.putstr(0, 20, "Done. Now run load3");
  12. GD.wr(IOMODE, 0);
  13. }
  14. void loop()
  15. {
  16. }