Search found 5 matches

by embedded_guy
Thu Aug 04, 2011 7:45 am
Forum: NetBurner Software
Topic: EFFS Standard
Replies: 3
Views: 3295

Re: EFFS Standard

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 ...
by embedded_guy
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 ...
by embedded_guy
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.
by embedded_guy
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:

Code: Select all

   OSChangePrio(MAIN_PRIO);
Shouldn't this take care of setting the priority for main?

Any help is appreciated.
by embedded_guy
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 ...