Library set up as dummy module on mbed to mimic Nordic.

Dependencies:   mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers comms.h Source File

comms.h

00001 #ifndef COMMS_H
00002 #define COMMS_H
00003 
00004 #include "mbed.h"
00005 
00006 //global hardware
00007 extern I2C i2c;
00008 extern Serial pc;
00009 extern Serial bus;
00010 
00011 
00012 void initComms();
00013 
00014 
00015 void debugLog( char* fmt, ...);
00016 
00017 #endif