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 BTpacket.h Source File

BTpacket.h

00001 #ifndef BTPACKET_H
00002 #define BTPACKET_H
00003 
00004 #pragma pack(1)
00005 typedef struct{
00006     unsigned char command;
00007     unsigned char packetLength;
00008     unsigned char packetData[18];
00009 } BTpacket_t;
00010 #pragma pack(0)
00011 
00012 #endif