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 | |
parent | 05be3d85d1b29e0bbca243cc194a8f162c8e48f7 (diff) |
Add included header file and fix debug print
-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 355d4e8256..259d254007 100644 --- a/protocol/ps2_interrupt.c +++ b/protocol/ps2_interrupt.c @@ -40,9 +40,10 @@ POSSIBILITY OF SUCH DAMAGE. */ #include <stdbool.h> +#include <avr/interrupt.h> #include <util/delay.h> #include "ps2.h" -#include "debug.h" +#include "print.h" #define WAIT(stat, us, err) do { \ @@ -241,7 +242,7 @@ static inline void pbuf_enqueue(uint8_t data) pbuf[pbuf_head] = data; pbuf_head = next; } else { - debug("pbuf: full\n"); + print("pbuf: full\n"); } SREG = sreg; } diff --git a/protocol/ps2_usart.c b/protocol/ps2_usart.c index 27947143ee..c2d9d0a208 100644 --- a/protocol/ps2_usart.c +++ b/protocol/ps2_usart.c @@ -40,11 +40,10 @@ POSSIBILITY OF SUCH DAMAGE. */ #include <stdbool.h> -#include <avr/io.h> #include <avr/interrupt.h> #include <util/delay.h> #include "ps2.h" -#include "debug.h" +#include "print.h" #define WAIT(stat, us, err) do { \ @@ -188,7 +187,7 @@ static inline void pbuf_enqueue(uint8_t data) pbuf[pbuf_head] = data; pbuf_head = next; } else { - debug("pbuf: full\n"); + print("pbuf: full\n"); } SREG = sreg; } |