reform

MNT Reform: Open Source Portable Computer
Log (Feed) | Files | Refs (Tags) | README

flash.sh (216B)


      1 #!/bin/bash
      2 
      3 echo "Flash MNT Reform Trackball2 (RP2040):"
      4 
      5 select yn in "Flash" "Exit"; do
      6     case $yn in
      7         Flash ) picotool load --force build/reform2-trackball2-fw.uf2;;
      8         Exit ) exit;;
      9     esac
     10 done
     11