Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: FatFileSystem HighSpeedAnalogIn TB6612FNG2 mbed
Diff: usbbt/bd_addr.h
- Revision:
- 0:373bcb197dc8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/usbbt/bd_addr.h Fri May 10 11:48:07 2013 +0000 @@ -0,0 +1,13 @@ +#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