■PC側
共有フォルダ経由でコピー。
copy test.gba \\raspberrypi\pi\multiboot\test.gba
■raspi側
1秒おきに監視。ファイルが更新されたら自動起動。
#!/bin/sh echo "multiboot watch..." last=`ls --full-time test.gba | awk '{print $6"-"$7}'` while true; do sleep 1 current=`ls --full-time test.gba | awk '{print $6"-"$7}'` if [ $last != $current ] ; then echo "" echo "updated: $current" last=$current ./multiboot test.gba fi done
■GBA
電源入れなおし。
raspi 3 b+。wifiも内蔵されてますしraspi-configで設定できるしで
すごい簡単になりましたねー。