Fabio Fumi / Mbed 2 deprecated Sharp_ce140f_emul

Dependencies:   mbed SDFileSystem

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers commands.h Source File

commands.h

00001 #ifndef COMMANDS_H
00002 #define COMMANDS_H
00003 
00004 #include "mbed.h"
00005 
00006 #define BUF_SIZE 256 // comms data depth
00007 
00008 extern volatile char     inDataBuf[];
00009 extern volatile char     outDataBuf[];
00010 extern volatile uint16_t inBufPosition;
00011 extern volatile uint16_t outBufPosition;
00012 extern volatile uint8_t  checksum;
00013 
00014 void ProcessCommand ( void ) ;
00015 
00016 #endif