diff options
Diffstat (limited to 'tmk_core/protocol/lufa/bluetooth.c')
-rw-r--r-- | tmk_core/protocol/lufa/bluetooth.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tmk_core/protocol/lufa/bluetooth.c b/tmk_core/protocol/lufa/bluetooth.c deleted file mode 100644 index 5eb52860b..000000000 --- a/tmk_core/protocol/lufa/bluetooth.c +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | /* | ||
2 | Bluefruit Protocol for TMK firmware | ||
3 | Author: Benjamin Gould, 2013 | ||
4 | Jack Humbert, 2015 | ||
5 | Based on code Copyright 2011 Jun Wako <wakojun@gmail.com> | ||
6 | This program is free software: you can redistribute it and/or modify | ||
7 | it under the terms of the GNU General Public License as published by | ||
8 | the Free Software Foundation, either version 2 of the License, or | ||
9 | (at your option) any later version. | ||
10 | This program is distributed in the hope that it will be useful, | ||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | GNU General Public License for more details. | ||
14 | You should have received a copy of the GNU General Public License | ||
15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
16 | */ | ||
17 | |||
18 | #include <stdint.h> | ||
19 | #include "report.h" | ||
20 | #include "print.h" | ||
21 | #include "debug.h" | ||
22 | #include "bluetooth.h" | ||
23 | |||
24 | void bluefruit_keyboard_print_report(report_keyboard_t *report) { | ||
25 | if (!debug_keyboard) return; | ||
26 | dprintf("keys: "); | ||
27 | for (int i = 0; i < KEYBOARD_REPORT_KEYS; i++) { | ||
28 | debug_hex8(report->keys[i]); | ||
29 | dprintf(" "); | ||
30 | } | ||
31 | dprintf(" mods: "); | ||
32 | debug_hex8(report->mods); | ||
33 | dprintf(" reserved: "); | ||
34 | debug_hex8(report->reserved); | ||
35 | dprintf("\n"); | ||
36 | } | ||
37 | |||
38 | void bluefruit_serial_send(uint8_t data) { serial_send(data); } \ No newline at end of file | ||