using mDot Lib's writeUserFile not saving data to flash.
- This topic has 9 replies, 4 voices, and was last updated 8 years, 8 months ago by
Jason Reiss.
-
AuthorPosts
-
July 25, 2016 at 10:50 pm #14300
Ajay K
ParticipantI am trying to create a file and save data to the flash using the code below. However no data is being saved. I think the file is created successfully because I get a valid non-negative file handle. However the writeUserFile returns a negative value indicating I am guessing no data was saved to the file. Not sure if I am using the API incorrectly?
mDot::mdot_file file = pDot->openUserFile("test.dat", mDot::FM_CREAT); if(file.fd >= 0) { uint16_t testData = 1000; int nBytesWrittern = pDot->writeUserFile(file, &testData, sizeof(uint16_t)); printf("Bytes Written :%d\n",nBytesWrittern); pDot->closeUserFile(file); } else { printf("Invalid File Handle while creating the file.\n"); }
Thanks,
Ajay.July 26, 2016 at 10:45 am #14314Ajay K
ParticipantAny Ideas as to why the writeUserFile API call is failing? I have set the log level to tracel_level for the mdot. However I don’t see any trace logs to see what the underlying issue may be for the write failures.
I was hoping to resolve this issue quickly, as I need to test the mdot under deep sleep mode and when it wakes up to be able to read this file that I saved before the mdot going into deep sleep mode.
Thanks,
Ajay.July 26, 2016 at 10:48 am #14316Jason Reiss
KeymasterCan you provide debug output?
July 26, 2016 at 11:09 am #14318Ajay K
ParticipantHi Jason,
I set the log level to trace_level and there were no trace debug outputs generated for the writeUserFile call. However I tried using another API call appendUserFile which is mentioned below and it worked fine. However I am assuming in this API call the file will be opened and closed every time I call this API correct? If so I am not sure if its efficient to open and close the file repeatedly and so I was using the writeUserFile API Call described earlier in this forum thread.
bool appendUserFile(const char* file, void* data, uint32_t size);
In reality I would be writing out a vector containing structs with fixed size containing data that needs to be stored and reloaded after a deep sleep.
Thanks,
Ajay.July 26, 2016 at 11:20 am #14320Jason Reiss
KeymasterThe file should be opened for writing.
mDot::mdot_file file = dot->openUserFile(“test.dat”, mDot::FM_CREAT | mDot::FM_WRONLY);
July 26, 2016 at 12:45 pm #14323Ajay K
ParticipantThanks Jason, that worked. By the way mDot::FM_CREAT does it create files always or if it exists, the file is overwritten?
July 26, 2016 at 12:52 pm #14324Mike Fiore
BlockedAjay,
FM_CREAT creates the file if it does not exist, but I don’t think it overwrites an existing file.
I think the files default to read-only when you open them, so you have to explicitly state that you want to write when you open it.
Cheers,
Mike
July 27, 2016 at 5:26 am #14329Steeve Zissou
ParticipantI have the same kind of issue with writing fie on flash memory.
@Ajay, could you provide an update on your solution?
Thanks!July 27, 2016 at 6:27 am #14330Steeve Zissou
ParticipantOk, now it seems that I can write data into a file stored in the flash memory.
Can I access such a file with my PC?
If this is not doable how can mDot write to data to a file that is accessible with my PC?
thanks,July 27, 2016 at 7:22 am #14334Jason Reiss
KeymasterThe bootloader is part of the mDot platform and can be accessed by sending to the debug serial port just after reseting the device.
User files in the flash memory are saved with a ‘u_’ prefix prepended to the supplied name through libmDot api. Also if a file is uploaded with the prefix it should show in the libmDot file list.
bootloader :>
bootloader :> help
Available commands:
help: display this message
boot: start user application
upgrade: upgrade to new firmware transferred over serial
transfer: transfer new firmware over serial, but don’t flash it
recv simple: read file into the filesystem over serial
recv ymodem [filename]: read file into the filesystem over serial
send: send file from the filesystem over serial
flash: flash new firmware that has already been transferred
reset: perform a soft reset of the system
delete: delete the specififed file from the filesystem
erase: erase entire 2MB external flash – BE SURE YOU WANT TO DO THIS!
-
AuthorPosts
- You must be logged in to reply to this topic.