2014 Eurobot fork
Dependencies: mbed-rtos mbed QEI
Processes/Printing/Printing.h
- Committer:
- rsavitski
- Date:
- 2013-10-15
- Revision:
- 92:4a1225fbb146
- Parent:
- 71:eb1956c2d316
File content as of revision 92:4a1225fbb146:
// Eurobot13 Printing.h //#define PRINTINGOFF #include "mbed.h" #include "rtos.h" namespace Printing { const size_t NUMIDS = sizeof(unsigned int)*8; //Function to start in Thread void printingloop(void const*); // //Functions to use bool registerID(char id, size_t length); bool unregisterID(char id); bool updateval(char id, float* buffer, size_t length); bool updateval(char id, float value); }