X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=protocol%2Fps2_interrupt.c;h=8114442bac663667f82dfbf78580b4069d381510;hb=f31cbc7219c9a1903331771c10056302817e68ca;hp=355d4e8256c2a8cff8acd3f2fa498fe8d578b5bb;hpb=4eb27ee89038e934dcb498df7508199efd9c93f1;p=qmk_firmware.git diff --git a/protocol/ps2_interrupt.c b/protocol/ps2_interrupt.c index 355d4e825..8114442ba 100644 --- a/protocol/ps2_interrupt.c +++ b/protocol/ps2_interrupt.c @@ -40,9 +40,11 @@ POSSIBILITY OF SUCH DAMAGE. */ #include +#include #include #include "ps2.h" -#include "debug.h" +#include "ps2_io.h" +#include "print.h" #define WAIT(stat, us, err) do { \ @@ -241,7 +243,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; }