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

Dependencies:   mbed-rtos mbed

BTpacket.h

Committer:
Stephen_NewVistas
Date:
2016-12-12
Revision:
1:d6b18299a715
Child:
2:9ab591cf81b8

File content as of revision 1:d6b18299a715:

#pragma pack(1)
typedef struct{
    unsigned char command;
    unsigned char packetLength;
    unsigned char packetData[18];
} BTpacket_t;
#pragma pack(0)