BTstack for EA LPC4088 QSB example program
Dependencies: LPC4088-USBHost mbed
Fork of KL46Z-BTstack_example by
The usage is the same as KL46Z-BTstack_example.
使い方はKL46Z-BTstack_exampleと同じです。
usbbt/bd_addr.h
- Committer:
- va009039
- Date:
- 2014-04-25
- Revision:
- 6:d946cb517371
- Parent:
- 0:1ed23ab1345f
File content as of revision 6:d946cb517371:
#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