Junichi Katsu / Mbed 2 deprecated BLEControl

Dependencies:   FatFileSystem TB6612FNG2 mbed

usbbt/bd_addr.h

Committer:
mbed_Cookbook_SE
Date:
2015-11-30
Revision:
0:de03cbbcd0ff

File content as of revision 0:de03cbbcd0ff:

#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