diff options
| author | tmk <nobody@nowhere> | 2014-06-17 00:57:59 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2014-07-30 14:07:43 +0900 |
| commit | c67ae2a6b546c822759352586c14cd9dccbbe0ff (patch) | |
| tree | ab77175c64bfce74d2662260b9cdb2af8d8a7efd /common/host.c | |
| parent | 04fe78ee0a7fe9baed39f021799a3dbb24ebeb36 (diff) | |
| download | qmk_firmware-c67ae2a6b546c822759352586c14cd9dccbbe0ff.tar.gz qmk_firmware-c67ae2a6b546c822759352586c14cd9dccbbe0ff.zip | |
Port action_* to mbed
Diffstat (limited to 'common/host.c')
| -rw-r--r-- | common/host.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/host.c b/common/host.c index 2e56971bd..e9b791670 100644 --- a/common/host.c +++ b/common/host.c | |||
| @@ -16,7 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #include <stdint.h> | 18 | #include <stdint.h> |
| 19 | #include <avr/interrupt.h> | 19 | //#include <avr/interrupt.h> |
| 20 | #include "keycode.h" | 20 | #include "keycode.h" |
| 21 | #include "host.h" | 21 | #include "host.h" |
| 22 | #include "util.h" | 22 | #include "util.h" |
| @@ -55,7 +55,7 @@ void host_keyboard_send(report_keyboard_t *report) | |||
| 55 | 55 | ||
| 56 | if (debug_keyboard) { | 56 | if (debug_keyboard) { |
| 57 | dprint("keyboard_report: "); | 57 | dprint("keyboard_report: "); |
| 58 | for (uint8_t i = 0; i < REPORT_SIZE; i++) { | 58 | for (uint8_t i = 0; i < KEYBOARD_REPORT_SIZE; i++) { |
| 59 | dprintf("%02X ", report->raw[i]); | 59 | dprintf("%02X ", report->raw[i]); |
| 60 | } | 60 | } |
| 61 | dprint("\n"); | 61 | dprint("\n"); |
