Finishing up the Epson QX-10 module

- Typing and modifiers fully working
- Still some features left to implement
  * Stop input
  * Diagnostic test
  * Setting interval before starting repeat rate
  * More comments
  * Handling LED stats
This commit is contained in:
Jacob Alexander 2011-12-11 00:06:49 -08:00
parent 8f8de985c5
commit 2519ea00e7
5 changed files with 28 additions and 7 deletions

View file

@ -27,6 +27,7 @@
// AVR Includes
// Project Includes
#include <scan_loop.h>
#include "usb_keyboard_debug.h"
// Local Includes
@ -82,5 +83,8 @@ inline void usb_send(void)
// Clear modifiers and keys
USBKeys_Modifiers = 0;
USBKeys_Sent = 0;
// Signal Scan Module we are finishedA
scan_finishedWithUSBBuffer();
}