X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=protocol%2Fps2_usart.c;h=c2d9d0a208d301cc71d8b2bdfcce6f652615fa5a;hb=c4efadf68a5b1853f253dd9f28afb54c26bff796;hp=27947143eef4c3811cd9fee144a5635d074dea29;hpb=4eb27ee89038e934dcb498df7508199efd9c93f1;p=max%2Ftmk_keyboard.git diff --git a/protocol/ps2_usart.c b/protocol/ps2_usart.c index 27947143..c2d9d0a2 100644 --- a/protocol/ps2_usart.c +++ b/protocol/ps2_usart.c @@ -40,11 +40,10 @@ POSSIBILITY OF SUCH DAMAGE. */ #include -#include #include #include #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; }