BLE demo for mbed Ported RunningElectronics's SBDBT firmware for BLE. It can communicate with iOS

Dependencies:   FatFileSystem mbed

Fork of BTstack by Norimasa Okamoto

usbbt/bd_addr.h

Committer:
todotani
Date:
2013-02-20
Revision:
6:cf06ba884429
Parent:
0:1ed23ab1345f

File content as of revision 6:cf06ba884429:

#ifndef BD_ADDR_H
#define BD_ADDR_H
class bd_addr {
public:
    bd_addr();
    bd_addr(char* s);
    uint8_t* data(uint8_t* addr = NULL);
    char* to_str();
private:
    char ad_str[18];
    uint8_t ad[6];
};
#endif //BD_ADDR_H