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: BLE_API mbed-dev nRF51822
HIDController_BLE.h@27:7370b8994603, 2016-08-22 (annotated)
- Committer:
- cho45
- Date:
- Mon Aug 22 23:14:42 2016 +0000
- Revision:
- 27:7370b8994603
- Parent:
- 20:d8840ac38434
- Child:
- 28:1f843a3daab0
??? Ticker ???????????????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
cho45 | 27:7370b8994603 | 1 | |
cho45 | 27:7370b8994603 | 2 | enum Status_t { |
cho45 | 27:7370b8994603 | 3 | DISCONNECTED, |
cho45 | 27:7370b8994603 | 4 | CONNECTING, |
cho45 | 27:7370b8994603 | 5 | CONNECTED, |
cho45 | 27:7370b8994603 | 6 | } ; |
cho45 | 27:7370b8994603 | 7 | |
cho45 | 27:7370b8994603 | 8 | |
cho45 |
6:f1c3ea8bc850 | 9 | class HIDController { |
cho45 |
6:f1c3ea8bc850 | 10 | public: |
cho45 |
6:f1c3ea8bc850 | 11 | static void init(); |
cho45 |
10:1aed2481a743 | 12 | static void waitForEvent(); |
cho45 | 20:d8840ac38434 | 13 | static bool connected(); |
cho45 | 27:7370b8994603 | 14 | static Status_t HIDController::status(); |
cho45 |
6:f1c3ea8bc850 | 15 | static void appendReportData(uint8_t key); |
cho45 |
6:f1c3ea8bc850 | 16 | static void deleteReportData(uint8_t key); |
cho45 |
9:d1daefbf1fbd | 17 | static void queueCurrentReportData(); |
cho45 |
6:f1c3ea8bc850 | 18 | }; |
cho45 |
6:f1c3ea8bc850 | 19 |