##// END OF EJS Templates
Huge cleanup, removed old unmaintained boards/libs/archs....
Huge cleanup, removed old unmaintained boards/libs/archs. Changed from building once the lib in small archives to whole rebuilding from sources for each executable, this will allow to use build-time switchs/optimisations. /!\ Simulator broken.

File last commit:

r71:608b7f0e27c2 dev_alexis
r105:031afdd64272 tip dev_alexis
Show More
fs.c
25 lines | 491 B | text/x-c | CLexer
Huge cleanup, removed "out of dir building" now libuc contains qmake and...
r71 #include <stdint.h>
#include <streamdevices.h>
#include <stdio.h>
#include <bsp.h>
const int32_t __max_opened_files__ = __MAX_OPENED_FILES__;
volatile streamdevice* __opnfiles__[__MAX_OPENED_FILES__];
const int32_t __fs_root_size__ = __FS_ROOT_SIZE__;
int32_t __fs_root__[__FS_ROOT_SIZE__];
/*
void __init_fs()
{
int i=0;
for(i=0;i<__fs_root_size__;i++)
{
__fs_root__[i]=(int32_t)NULL;
}
for(i=0;i<__max_opened_files__ ;i++)
{
__opnfiles__[i]._stream=NULL;
}
}
*/