BTstack Bluetooth stack

Dependencies:   mbed USBHost

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers bd_addr.h Source File

bd_addr.h

00001 #ifndef BD_ADDR_H
00002 #define BD_ADDR_H
00003 class bd_addr {
00004 public:
00005     bd_addr();
00006     bd_addr(char* s);
00007     uint8_t* data(uint8_t* addr = NULL);
00008     char* to_str();
00009 private:
00010     char ad_str[18];
00011     uint8_t ad[6];
00012 };
00013 #endif //BD_ADDR_H