Replies: 1 comment 2 replies
-
I'm not quite following the issue here, to be honest. To make a USB mass storage device, you don't need any filesystem support on the Pico. A USB MSD just reads and writes LBAs requested by the host. To share the files uploaded over Wifi, you do need a filesystem and a web server. The web server, you can probably get from an Arduino library. The filesystem, you can use the SD/SDFS filesytem (and SdFat 2 underneath it) to read and write files to send over the WiFi. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It seems like the Arduino-Pico File system(SdFat ver 2) is not compatible with the
Adafruit fork SdFat
--which is essential for the TinyUSB MSC implementation(readBlock()
,writeBlock()
, etc.). #749In my project, I am thinking about using WiFi.h and TinyUSB, making it possible to send files through wifi to the SD card on the Pico W, and letting the file be readable through the device it is connecting to (a 3d printer) through the USB.
So I was wondering, is there a way around this SdFat problem, or is this just a dead-end for now?
Thanks for any help in advance!
Beta Was this translation helpful? Give feedback.
All reactions