I am trying to use the EFFS-STD in a non-standard way in that I am interfacing it to a serial flash instead of a typical flash device. I think the STD library is a better fit for this case. I'm trying to determine if there are write issues with the descriptor writes.
Does anyone understand how EFFS ...
Search found 5 matches
- Thu Aug 04, 2011 7:45 am
- Forum: NetBurner Software
- Topic: EFFS Standard
- Replies: 3
- Views: 3295
- Wed Aug 03, 2011 11:49 am
- Forum: NetBurner Software
- Topic: EFFS Standard
- Replies: 3
- Views: 3295
Re: EFFS Standard
Thanks for the reply.
I am trying to use the EFFS-STD in a non-standard way in that I am interfacing it to a serial flash instead of a typical flash device. I think the STD library is a better fit for this case. I'm trying to determine if there are write issues with the descriptor writes.
Does ...
I am trying to use the EFFS-STD in a non-standard way in that I am interfacing it to a serial flash instead of a typical flash device. I think the STD library is a better fit for this case. I'm trying to determine if there are write issues with the descriptor writes.
Does ...
- Mon Aug 01, 2011 11:39 am
- Forum: NetBurner Software
- Topic: EFFS Standard
- Replies: 3
- Views: 3295
EFFS Standard
I am looking to use the EFFS-Standard for an external serial flash device. One thing I noticed is that in fs_main, memory is malloc'd for the file system. What is this memory used for by the file system?
Any help is appreciated.
Thanks.
Any help is appreciated.
Thanks.
- Tue Jul 19, 2011 12:00 pm
- Forum: NetBurner Software
- Topic: EFFS RAM Drive
- Replies: 3
- Views: 3457
Re: EFFS RAM Drive
Thanks for the reply.
I do make the following call before I perform any EFFS function calls:
Shouldn't this take care of setting the priority for main?
Any help is appreciated.
I do make the following call before I perform any EFFS function calls:
Code: Select all
OSChangePrio(MAIN_PRIO);
Any help is appreciated.
- Sat Jul 16, 2011 11:34 am
- Forum: NetBurner Software
- Topic: EFFS RAM Drive
- Replies: 3
- Views: 3457
EFFS RAM Drive
I am trying to create a RAM drive using the EFFS. I have followed the example from the fat_331.pdf document. In main, I have the following
f_enterFS();
f_init();
f_initvolume(0, f_ramdrvinit, F_AUTO_ASSIGN);
f_format(0, F_FAT12_MEDIA);
ReadWriteTest();
DisplayEffsSpaceStats();
When ...
f_enterFS();
f_init();
f_initvolume(0, f_ramdrvinit, F_AUTO_ASSIGN);
f_format(0, F_FAT12_MEDIA);
ReadWriteTest();
DisplayEffsSpaceStats();
When ...