Embedded Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsComputer HardwareEmbedded Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 21st, 2010, 06:47 AM
ImreLeber ImreLeber is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2010
Posts: 1 ImreLeber User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 10 m 36 sec
Reputation Power: 0
New file system library ClibFS

I have written a file system for embedded use.

It implements all the C library file functions on top of the necessary code to work with a FAT12, FAT16, FAT32 file system. It has support for transparent long file names.

It allows to use anything as a FAT volume. For this it has a very simple driver interface. By implementing 4 functions for any kind of volume it can contain a complete file system together with all the file functions you will ever need.

It can use an unlimited number of volumes and all volumes are given a drive letter, like in windows.

It has full subst and join support. So you can also access all your volumes from the root directory like in linux.

So it fully supports file names like:

c:\log\coldroom.log

and

/mnt/eeprom/log/coldroom.log

Further more, it implements all the C library functions. So you can use all your existing file access code from windows (and linux, DOS, ...).

Example:

/* fopen example */

#include <ClibFS.h>

int main ()
{
FILE * pFile;

pFile = fopen ("myfile.txt","w");
if (pFile!=NULL)
{
fputs ("fopen example",pFile);
fclose (pFile);
}

return 0;
}

With clibfs this runs without using an operating system.

This means:

- you don't need to learn any new functions
- you can use an enormous amount of existing code on an embedded system without OS

The library is released under the terms of the GNU LGPL. This means you can use it in all your software.

I am posting this message to see if people would be interested in libraries like these. I have a lot more queued up, I would like to release if there is interest.

You can find the library with the documentation on sourceforge, project ClibFS (search for it on the main page)

Reply With Quote
Reply

Viewing: Dev Shed ForumsComputer HardwareEmbedded Programming > New file system library ClibFS

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap