Преглед изворни кода

Fixing the strobe count on the Kishsaver

- Should fix the last of the phantom keys
simple
Jacob Alexander пре 10 година
родитељ
комит
2d5e6c4e12
1 измењених фајлова са 3 додато и 4 уклоњено
  1. 3
    4
      Scan/avr-capsense/scan_loop.c

+ 3
- 4
Scan/avr-capsense/scan_loop.c Прегледај датотеку

@@ -220,7 +220,8 @@ inline void scan_setup()
//#define TERMINAL_6110668_STROBE
//#define UNSAVER_STROBE
#ifdef KISHSAVER_STROBE
total_strobes = 10;
total_strobes = 8;
//total_strobes = 9;

strobe_map[0] = 2; // Kishsaver doesn't use strobe 0 and 1
strobe_map[1] = 3;
@@ -391,10 +392,9 @@ void scan_finishedWithUSBBuffer( uint8_t sentKeys )
inline void capsense_scan()
{
// TODO dfj code...needs commenting + cleanup...
uint8_t strober = 0;
uint32_t full_av_acc = 0;

for (strober = 0; strober < total_strobes; ++strober)
for ( uint8_t strober = 0; strober < total_strobes; ++strober )
{
uint8_t map_strobe = strobe_map[strober];

@@ -751,7 +751,6 @@ uint8_t testColumn( uint8_t strobe )
#define KEYSCAN_DEBOUNCE_DEBUG
#ifdef KEYSCAN_DEBOUNCE_DEBUG
// Debug message
// <key> [<strobe>:<mux>] : <sense val> : <delta + threshold> : <margin>
print("0x");
printHex_op( key, 2 );
print(" ");