ICRS Eurobot 2013

Dependencies:   mbed mbed-rtos Servo QEI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Printing.h Source File

Printing.h

00001 
00002 // Eurobot13 Printing.h
00003 
00004 #include "mbed.h"
00005 #include "rtos.h"
00006 
00007 const size_t NUMIDS = sizeof(unsigned int)*8;
00008 
00009 //Function to start in Thread
00010 void printingThread(void const*); //
00011 
00012 //Functions to use 
00013 bool registerID(char id, size_t length);
00014 bool unregisterID(char id);
00015 bool updateval(char id, float* buffer, size_t length);
00016 bool updateval(char id, float value);