You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@LeStarch I would like your expertise/opinion on this. Do you think this is worth adding? Or is work being done to implement a microFS within FPrime that would perform better (or make more sense) compared to an SD card instance?
Edit: An argument to use an SD card over a microFS is memory usage. External storage means the file system would not have to tap into the internal FLASH/RAM, which is already very limited for most Arduino platforms
So far I have done small tests with this and was able to read/write multiple files, create directories, delete files, move files etc.
A possible design flaw with this is that I had to use new ::File within the constructor and store the Arduino File class as a pointer to m_fd.
Adding this new feature will hopefully allow the integrating of FileUplink and FileDownlink for Baremetal applications.
Edit: FileDownlink and Uplink works
The text was updated successfully, but these errors were encountered:
These lines would force the use of the Baremetal versions of File.cpp and FileSystem.cpp and would prevent my Arduino versions to be used. Unsure if there is a better way to do this.
Add support for a file system on Arduino platforms, using an SD card.
See these additions:
@LeStarch I would like your expertise/opinion on this. Do you think this is worth adding? Or is work being done to implement a microFS within FPrime that would perform better (or make more sense) compared to an SD card instance?
So far I have done small tests with this and was able to read/write multiple files, create directories, delete files, move files etc.
A possible design flaw with this is that I had to use
new ::File
within the constructor and store the Arduino File class as a pointer tom_fd
.Adding this new feature will hopefully allow the integrating of FileUplink and FileDownlink for Baremetal applications.
Edit: FileDownlink and Uplink works
The text was updated successfully, but these errors were encountered: