load0.pde 267 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(0);
  8. page = STAGEBASE;
  9. GD_uncompress(part0);
  10. common_show_status();
  11. GD.putstr(0, 20, "Done. Now run load1");
  12. GD.wr(IOMODE, 0);
  13. }
  14. void loop()
  15. {
  16. }