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

Dependencies:   mbed-rtos mbed

Revision:
2:9ab591cf81b8
Parent:
1:d6b18299a715
--- a/BTpacket.h	Mon Dec 12 23:19:30 2016 +0000
+++ b/BTpacket.h	Tue Dec 13 00:20:29 2016 +0000
@@ -1,7 +1,12 @@
+#ifndef BTPACKET_H
+#define BTPACKET_H
+
 #pragma pack(1)
 typedef struct{
     unsigned char command;
     unsigned char packetLength;
     unsigned char packetData[18];
 } BTpacket_t;
-#pragma pack(0)
\ No newline at end of file
+#pragma pack(0)
+
+#endif