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

Dependencies:   mbed-rtos mbed

BTpacket.h

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

File content as of revision 2:9ab591cf81b8:

#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)

#endif