Enabling USB keycodes.

- There are some bugs here:
  * Press/Release (this is a keymapping bug, has nothing to do with capsense press/release which is working)
  * Some keys give incorrect USB codes
This commit is contained in:
Jacob Alexander 2014-04-25 02:35:49 -07:00
parent c3e1335678
commit 219e90cdd3
2 changed files with 105 additions and 104 deletions

View file

@ -23,6 +23,7 @@
// Project Includes
#include <cli.h>
#include <led.h>
#include <macro.h>
#include <print.h>
// Local Includes
@ -805,7 +806,7 @@ void testColumn( uint8_t strobe )
// Only add the key to the buffer once
// NOTE: Buffer can easily handle multiple adds, just more efficient
// and nicer debug messages :P
//Macro_bufferAdd( key );
Macro_bufferAdd( key );
}
keys_debounce[key]++;