usb: add USB mass storage class support

This commit is contained in:
Michael Smith
2025-06-09 11:17:23 -04:00
committed by Ron Evans
parent ba274008d5
commit 87153e9a02
15 changed files with 1714 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"machine"
"machine/usb/msc"
"time"
)
func main() {
msc.Port(machine.Flash)
for {
time.Sleep(2 * time.Second)
}
}