X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=protocol%2Fadb.c;h=d7105b3a9ae5b44564088f2923ea290da7c67113;hb=e451c059296a4c9af7a476577fee64afb9965bca;hp=d60b8608b1ee9ce222b41f7d821fcdab1f044609;hpb=76033dcd892a115240c5a990e5643cd53acbca87;p=max%2Ftmk_keyboard.git diff --git a/protocol/adb.c b/protocol/adb.c index d60b8608..d7105b3a 100644 --- a/protocol/adb.c +++ b/protocol/adb.c @@ -38,6 +38,7 @@ POSSIBILITY OF SUCH DAMAGE. #include #include #include +#include #include "adb.h" @@ -85,8 +86,13 @@ uint16_t adb_host_kbd_recv(void) return 0; // No data to send if (!read_bit()) // Startbit(1) return -2; + + // ad hoc fix: without block inerrupt read wrong bit occasionally and get keys stuck + cli(); data = read_byte(); data = (data<<8) | read_byte(); + sei(); + if (read_bit()) // Stopbit(0) return -3; return data;