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

Dependencies:   mbed-rtos mbed

comms.h

Committer:
Stephen_NewVistas
Date:
2016-12-12
Revision:
0:226550611f0d

File content as of revision 0:226550611f0d:

#ifndef COMMS_H
#define COMMS_H

#include "mbed.h"

//global hardware
extern I2C i2c;
extern Serial pc;
extern Serial bus;


void initComms();


void debugLog( char* fmt, ...);

#endif