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 TB6612FNG2 mbed
usbbt/bd_addr.h@0:de03cbbcd0ff, 2015-11-30 (annotated)
- Committer:
- mbed_Cookbook_SE
- Date:
- Mon Nov 30 09:32:15 2015 +0000
- Revision:
- 0:de03cbbcd0ff
??
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 1 | #ifndef BD_ADDR_H |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 2 | #define BD_ADDR_H |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 3 | class bd_addr { |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 4 | public: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 5 | bd_addr(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 6 | bd_addr(char* s); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 7 | uint8_t* data(uint8_t* addr = NULL); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 8 | char* to_str(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 9 | private: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 10 | char ad_str[18]; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 11 | uint8_t ad[6]; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 12 | }; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 13 | #endif //BD_ADDR_H |