Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 5 months ago.
About the LocalFileSystem and mbed.h
I tried to get familiar with mbed of MAX32600 version by doing some file operation. However when I want to announce a new object of LocalFileSystem. I was told that the LocalFileSystem is undefined. So where is my faut?
Here is my program:
- include "mbed.h"
LocalFile System local("local"); int main() { FILE *fp=fopen("/local/out.txt","w"); fpringf(fp,"hello world\n"); fclose(fp); }