diff options
Diffstat (limited to 'protocol/ps2_interrupt.c')
-rw-r--r-- | protocol/ps2_interrupt.c | 5 |
1 files changed, 3 insertions, 2 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; } |