diff options
| author | tmk <nobody@nowhere> | 2013-11-28 14:44:59 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-11-28 14:44:59 +0900 |
| commit | 8b4fa599cf485f5d06314938a228a88dabb0b7f5 (patch) | |
| tree | ee35675b22336aab59e1652f0a619333aa8baa09 /protocol | |
| parent | 05be3d85d1b29e0bbca243cc194a8f162c8e48f7 (diff) | |
| download | qmk_firmware-8b4fa599cf485f5d06314938a228a88dabb0b7f5.tar.gz qmk_firmware-8b4fa599cf485f5d06314938a228a88dabb0b7f5.zip | |
Add included header file and fix debug print
Diffstat (limited to 'protocol')
| -rw-r--r-- | protocol/ps2_interrupt.c | 5 | ||||
| -rw-r--r-- | protocol/ps2_usart.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/protocol/ps2_interrupt.c b/protocol/ps2_interrupt.c index 355d4e825..259d25400 100644 --- a/protocol/ps2_interrupt.c +++ b/protocol/ps2_interrupt.c | |||
| @@ -40,9 +40,10 @@ POSSIBILITY OF SUCH DAMAGE. | |||
| 40 | */ | 40 | */ |
| 41 | 41 | ||
| 42 | #include <stdbool.h> | 42 | #include <stdbool.h> |
| 43 | #include <avr/interrupt.h> | ||
| 43 | #include <util/delay.h> | 44 | #include <util/delay.h> |
| 44 | #include "ps2.h" | 45 | #include "ps2.h" |
| 45 | #include "debug.h" | 46 | #include "print.h" |
| 46 | 47 | ||
| 47 | 48 | ||
| 48 | #define WAIT(stat, us, err) do { \ | 49 | #define WAIT(stat, us, err) do { \ |
| @@ -241,7 +242,7 @@ static inline void pbuf_enqueue(uint8_t data) | |||
| 241 | pbuf[pbuf_head] = data; | 242 | pbuf[pbuf_head] = data; |
| 242 | pbuf_head = next; | 243 | pbuf_head = next; |
| 243 | } else { | 244 | } else { |
| 244 | debug("pbuf: full\n"); | 245 | print("pbuf: full\n"); |
| 245 | } | 246 | } |
| 246 | SREG = sreg; | 247 | SREG = sreg; |
| 247 | } | 248 | } |
diff --git a/protocol/ps2_usart.c b/protocol/ps2_usart.c index 27947143e..c2d9d0a20 100644 --- a/protocol/ps2_usart.c +++ b/protocol/ps2_usart.c | |||
| @@ -40,11 +40,10 @@ POSSIBILITY OF SUCH DAMAGE. | |||
| 40 | */ | 40 | */ |
| 41 | 41 | ||
| 42 | #include <stdbool.h> | 42 | #include <stdbool.h> |
| 43 | #include <avr/io.h> | ||
| 44 | #include <avr/interrupt.h> | 43 | #include <avr/interrupt.h> |
| 45 | #include <util/delay.h> | 44 | #include <util/delay.h> |
| 46 | #include "ps2.h" | 45 | #include "ps2.h" |
| 47 | #include "debug.h" | 46 | #include "print.h" |
| 48 | 47 | ||
| 49 | 48 | ||
| 50 | #define WAIT(stat, us, err) do { \ | 49 | #define WAIT(stat, us, err) do { \ |
| @@ -188,7 +187,7 @@ static inline void pbuf_enqueue(uint8_t data) | |||
| 188 | pbuf[pbuf_head] = data; | 187 | pbuf[pbuf_head] = data; |
| 189 | pbuf_head = next; | 188 | pbuf_head = next; |
| 190 | } else { | 189 | } else { |
| 191 | debug("pbuf: full\n"); | 190 | print("pbuf: full\n"); |
| 192 | } | 191 | } |
| 193 | SREG = sreg; | 192 | SREG = sreg; |
| 194 | } | 193 | } |
