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
usbbt/bd_addr.h@0:373bcb197dc8, 2013-05-10 (annotated)
- Committer:
- jksoft
- Date:
- Fri May 10 11:48:07 2013 +0000
- Revision:
- 0:373bcb197dc8
?????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jksoft | 0:373bcb197dc8 | 1 | #ifndef BD_ADDR_H |
jksoft | 0:373bcb197dc8 | 2 | #define BD_ADDR_H |
jksoft | 0:373bcb197dc8 | 3 | class bd_addr { |
jksoft | 0:373bcb197dc8 | 4 | public: |
jksoft | 0:373bcb197dc8 | 5 | bd_addr(); |
jksoft | 0:373bcb197dc8 | 6 | bd_addr(char* s); |
jksoft | 0:373bcb197dc8 | 7 | uint8_t* data(uint8_t* addr = NULL); |
jksoft | 0:373bcb197dc8 | 8 | char* to_str(); |
jksoft | 0:373bcb197dc8 | 9 | private: |
jksoft | 0:373bcb197dc8 | 10 | char ad_str[18]; |
jksoft | 0:373bcb197dc8 | 11 | uint8_t ad[6]; |
jksoft | 0:373bcb197dc8 | 12 | }; |
jksoft | 0:373bcb197dc8 | 13 | #endif //BD_ADDR_H |