-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement MCI emulation for native #4033
Conversation
Would be cool if you can actually store to a file instead of an array :-) |
@authmillenon This is just the low-level interface for talking to the storage medium. Everything else will be built on top of that, but I need this for testing :) |
Maybe I miss something, but |
Oh :) Yeah, I misunderstood you there. Why would you want to store a file? That is, what would be your use case? |
The MCI interface is used for persistent data, right? A file is persistent. An array in RAM not. |
+ the module would block less RAM. And yes, when you start to use 8MB for one module I get grumpy, even on native ^^. |
I already wrote a file based storage driver for native for some other interface. |
@authmillenon Updated to use a file instead of RAM ✨ |
💃 |
Superseded by #4345 |
The MSBA2 has an MCI driver to talk to the on-board
SD-card reader, but until now there was no way of
running/testing an application using it under native.
This PR adds rudimentary emulation of the MCI interface
and provides a test application.