diff options
author | Ryan <fauxpark@gmail.com> | 2020-08-25 19:03:45 +1000 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
commit | 0f596881b36587a298568192078f9b467c51c109 (patch) | |
tree | 187554101f88057c2f6a826ebc33a3533ec9adc6 /tmk_core/protocol/lufa/bluetooth.c | |
parent | 15df82cdf3f5b5d81af2cc235fbfe7643cd044b9 (diff) | |
download | qmk_firmware-0f596881b36587a298568192078f9b467c51c109.tar.gz qmk_firmware-0f596881b36587a298568192078f9b467c51c109.zip |
Remove support for Adafruit EZ-Key (#10103)
* Remove support for Adafruit EZ-Key
* Update docs/ja/feature_bluetooth.md
Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
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 | ||