J&W / Mbed 2 deprecated Rejestrator

Dependencies:   mbed Rejestrator

Dependents:   Rejestrator

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FileWritter.h Source File

FileWritter.h

00001 #include <Thread.h>
00002 #include <Queue.h>
00003 #include <mbed.h>
00004 #include "Rejestrator.h"
00005 #include "H_IO.h"
00006 #include "USBHostMSD.h"
00007 
00008 
00009 #ifndef _FileWritter_H
00010 #define _FileWritter_H
00011 
00012 #define FILESIZE (10*60)
00013 
00014 extern rtos::MemoryPool<struct row_type, 20>   data_memory;
00015 extern rtos::Queue<struct row_type, 20>   data_queue;
00016 
00017 
00018 void FileWritter(const void *param);
00019 
00020 #endif