ban4jp -
/
BTstack_test
https://mbed.org/forum/ja/topic/4890/
Fork of BTstack by
usbbt/bd_addr.h
- Committer:
- va009039
- Date:
- 2012-06-26
- Revision:
- 0:1ed23ab1345f
File content as of revision 0:1ed23ab1345f:
#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