Cap sense now functional! Alpha begins :D
This commit is contained in:
parent
a8d8da88e4
commit
afc227d515
@ -123,6 +123,7 @@
|
|||||||
|
|
||||||
#define SAMPLE_CONTROL 3
|
#define SAMPLE_CONTROL 3
|
||||||
|
|
||||||
|
//#define DEFAULT_KEY_BASE 0xc8
|
||||||
#define DEFAULT_KEY_BASE 0x95
|
#define DEFAULT_KEY_BASE 0x95
|
||||||
|
|
||||||
#define KEY_COUNT ((STROBE_LINES) * (MUXES_COUNT))
|
#define KEY_COUNT ((STROBE_LINES) * (MUXES_COUNT))
|
||||||
@ -242,7 +243,9 @@ uint8_t dirty;
|
|||||||
uint8_t unstable;
|
uint8_t unstable;
|
||||||
uint8_t usb_dirty;
|
uint8_t usb_dirty;
|
||||||
|
|
||||||
uint16_t threshold = THRESHOLD;
|
uint16_t threshold = 0x25; // HaaTa Hack -TODO
|
||||||
|
//uint16_t threshold = 0x16; // HaaTa Hack -TODO
|
||||||
|
//uint16_t threshold = THRESHOLD;
|
||||||
uint16_t tests = 0;
|
uint16_t tests = 0;
|
||||||
|
|
||||||
uint8_t col_a=0;
|
uint8_t col_a=0;
|
||||||
@ -267,9 +270,9 @@ uint16_t boot_count = 0;
|
|||||||
uint16_t idle_count=0;
|
uint16_t idle_count=0;
|
||||||
uint8_t idle = 1;
|
uint8_t idle = 1;
|
||||||
|
|
||||||
/*volatile*/ uint16_t count = 0;
|
uint16_t count = 0;
|
||||||
|
|
||||||
/*volatile*/ uint8_t error = 0;
|
uint8_t error = 0;
|
||||||
uint16_t error_data = 0;
|
uint16_t error_data = 0;
|
||||||
|
|
||||||
|
|
||||||
@ -294,8 +297,6 @@ void dumpkeys( void );
|
|||||||
void recovery( uint8_t on );
|
void recovery( uint8_t on );
|
||||||
|
|
||||||
int sampleColumn( uint8_t column );
|
int sampleColumn( uint8_t column );
|
||||||
//int sampleColumn_i( uint8_t column, uint8_t muxes, int16_t * buffer); // XXX Not currently used
|
|
||||||
int sampleColumn_k( uint8_t column, int16_t *buffer );
|
|
||||||
|
|
||||||
void setup_ADC( void );
|
void setup_ADC( void );
|
||||||
|
|
||||||
@ -313,14 +314,6 @@ inline void scan_setup()
|
|||||||
// TODO dfj code...needs cleanup + commenting...
|
// TODO dfj code...needs cleanup + commenting...
|
||||||
setup_ADC();
|
setup_ADC();
|
||||||
|
|
||||||
// Configure timer 0 to generate a timer overflow interrupt every
|
|
||||||
// 256*1024 clock cycles, or approx 61 Hz when using 16 MHz clock
|
|
||||||
// This demonstrates how to use interrupts to implement a simple
|
|
||||||
// inactivity timeout.
|
|
||||||
//TCCR0A = 0x00;
|
|
||||||
//TCCR0B = 0x05;
|
|
||||||
//TIMSK0 = (1<<TOIE0);
|
|
||||||
|
|
||||||
DDRC = C_MASK;
|
DDRC = C_MASK;
|
||||||
PORTC = 0;
|
PORTC = 0;
|
||||||
DDRD = D_MASK;
|
DDRD = D_MASK;
|
||||||
@ -379,32 +372,14 @@ inline uint8_t scan_loop()
|
|||||||
tries = 1;
|
tries = 1;
|
||||||
while (tries++ && sampleColumn(strober)) { tries &= 0x7; } // don't waste this one just because the last one was poop.
|
while (tries++ && sampleColumn(strober)) { tries &= 0x7; } // don't waste this one just because the last one was poop.
|
||||||
column = testColumn(strober);
|
column = testColumn(strober);
|
||||||
|
|
||||||
idle |= column; // if column has any pressed keys, then we are not idle.
|
idle |= column; // if column has any pressed keys, then we are not idle.
|
||||||
|
|
||||||
if( column != cur_keymap[strober] && (count >= WARMUP_LOOPS) ) {
|
if( column != cur_keymap[strober] && (boot_count >= WARMUP_LOOPS) ) {
|
||||||
tests++;
|
tests++;
|
||||||
|
|
||||||
#if 0
|
|
||||||
tries = 1;
|
|
||||||
while (tries++ && sampleColumn(strober)) { tries &= 0x7; }
|
|
||||||
col_a = testColumn(strober);
|
|
||||||
|
|
||||||
tries = 1;
|
|
||||||
while (tries++ && sampleColumn(strober)) { tries &= 0x7; }
|
|
||||||
col_b = testColumn(strober);
|
|
||||||
|
|
||||||
tries = 1;
|
|
||||||
while (tries++ && sampleColumn(strober)) { tries &= 0x7; }
|
|
||||||
col_c = testColumn(strober);
|
|
||||||
|
|
||||||
if( (col_a == col_b) && (col_b == col_c) && (cur_keymap[strober] != col_a) ) {
|
|
||||||
cur_keymap[strober] = col_a;
|
|
||||||
usb_dirty = 1;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
cur_keymap[strober] = column;
|
cur_keymap[strober] = column;
|
||||||
usb_dirty = 1;
|
usb_dirty = 1;
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
|
|
||||||
idle |= usb_dirty; // if any keys have changed inc. released, then we are not idle.
|
idle |= usb_dirty; // if any keys have changed inc. released, then we are not idle.
|
||||||
@ -712,7 +687,7 @@ void strobe_w(uint8_t strobe_num) {
|
|||||||
PORTE &= ~(E_MASK);
|
PORTE &= ~(E_MASK);
|
||||||
|
|
||||||
#ifdef SHORT_C
|
#ifdef SHORT_C
|
||||||
strobe_num = 15 - strobe_num;
|
//strobe_num = 15 - strobe_num;
|
||||||
#endif
|
#endif
|
||||||
/*
|
/*
|
||||||
printHex( strobe_num );
|
printHex( strobe_num );
|
||||||
@ -725,6 +700,8 @@ void strobe_w(uint8_t strobe_num) {
|
|||||||
switch(strobe_num) {
|
switch(strobe_num) {
|
||||||
|
|
||||||
// XXX Kishsaver strobe (note that D0, D1 are not used)
|
// XXX Kishsaver strobe (note that D0, D1 are not used)
|
||||||
|
case 0: PORTD |= (1 << 0); break;
|
||||||
|
case 1: PORTD |= (1 << 1); break;
|
||||||
case 2: PORTD |= (1 << 2); break;
|
case 2: PORTD |= (1 << 2); break;
|
||||||
case 3: PORTD |= (1 << 3); break;
|
case 3: PORTD |= (1 << 3); break;
|
||||||
case 4: PORTD |= (1 << 4); break;
|
case 4: PORTD |= (1 << 4); break;
|
||||||
@ -735,7 +712,22 @@ void strobe_w(uint8_t strobe_num) {
|
|||||||
case 7: PORTD |= (1 << 7); break;
|
case 7: PORTD |= (1 << 7); break;
|
||||||
case 8: PORTE |= (1 << 0); break;
|
case 8: PORTE |= (1 << 0); break;
|
||||||
case 9: PORTE |= (1 << 1); break;
|
case 9: PORTE |= (1 << 1); break;
|
||||||
case 15: PORTC |= (1 << 5); break;
|
//case 15: PORTC |= (1 << 5); break; // Test strobe on kishsaver
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
// XXX Kishsaver strobe (note that D0, D1 are not used)
|
||||||
|
case 0: PORTD |= (1 << 2); break;
|
||||||
|
case 1: PORTD |= (1 << 3); break;
|
||||||
|
case 2: PORTD |= (1 << 4); break;
|
||||||
|
case 3: PORTD |= (1 << 5); break;
|
||||||
|
|
||||||
|
// TODO REMOVEME
|
||||||
|
case 4: PORTD |= (1 << 6); break;
|
||||||
|
case 5: PORTD |= (1 << 7); break;
|
||||||
|
case 6: PORTE |= (1 << 0); break;
|
||||||
|
case 7: PORTE |= (1 << 1); break;
|
||||||
|
case 15: PORTC |= (1 << 5); break; // Test strobe on kishsaver
|
||||||
|
#endif
|
||||||
/*
|
/*
|
||||||
#ifdef ALL_D
|
#ifdef ALL_D
|
||||||
|
|
||||||
@ -967,7 +959,6 @@ int sampleColumn_8x(uint8_t column, uint16_t * buffer) {
|
|||||||
int sampleColumn(uint8_t column) {
|
int sampleColumn(uint8_t column) {
|
||||||
int rval = 0;
|
int rval = 0;
|
||||||
|
|
||||||
//rval = sampleColumn_k(column, samples+SAMPLE_OFFSET);
|
|
||||||
rval = sampleColumn_8x(column, samples+SAMPLE_OFFSET);
|
rval = sampleColumn_8x(column, samples+SAMPLE_OFFSET);
|
||||||
|
|
||||||
#if (BUMP_DETECTION)
|
#if (BUMP_DETECTION)
|
||||||
@ -988,14 +979,35 @@ int sampleColumn(uint8_t column) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
uint8_t testColumn(uint8_t strobe) {
|
uint8_t testColumn(uint8_t strobe)
|
||||||
|
{
|
||||||
uint8_t column = 0;
|
uint8_t column = 0;
|
||||||
uint8_t bit = 1;
|
uint8_t bit = 1;
|
||||||
for (uint8_t i=0; i < MUXES_COUNT; ++i) {
|
for (uint8_t i = 0; i < MUXES_COUNT; ++i)
|
||||||
|
{
|
||||||
uint16_t delta = keys_averages[(strobe << MUXES_COUNT_XSHIFT) + i];
|
uint16_t delta = keys_averages[(strobe << MUXES_COUNT_XSHIFT) + i];
|
||||||
if ((db_sample = samples[SAMPLE_OFFSET + i] >> 1) > (db_threshold = threshold) + (db_delta = delta)) {
|
|
||||||
|
if ((db_sample = samples[SAMPLE_OFFSET + i] >> 1) > (db_threshold = threshold) + (db_delta = delta))
|
||||||
|
{
|
||||||
column |= bit;
|
column |= bit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef THRESHOLD_VERIFICATION
|
||||||
|
if ( db_sample > 0xA0 )
|
||||||
|
{
|
||||||
|
printHex( db_sample );
|
||||||
|
print(" : ");
|
||||||
|
printHex( db_threshold );
|
||||||
|
print(" : ");
|
||||||
|
printHex( db_delta );
|
||||||
|
print(" :: ");
|
||||||
|
printHex( column );
|
||||||
|
print(" : ");
|
||||||
|
printHex( strobe );
|
||||||
|
print(NL);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bit <<= 1;
|
bit <<= 1;
|
||||||
}
|
}
|
||||||
return column;
|
return column;
|
||||||
@ -1038,10 +1050,8 @@ void dumpkeys(void) {
|
|||||||
|
|
||||||
if(usb_dirty)
|
if(usb_dirty)
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
printHex( key );
|
printHex( key );
|
||||||
print(" ");
|
print("\n");
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1053,7 +1063,7 @@ void dumpkeys(void) {
|
|||||||
|
|
||||||
void dump(void) {
|
void dump(void) {
|
||||||
|
|
||||||
#define DEBUG_FULL_SAMPLES_AVERAGES
|
//#define DEBUG_FULL_SAMPLES_AVERAGES
|
||||||
#ifdef DEBUG_FULL_SAMPLES_AVERAGES
|
#ifdef DEBUG_FULL_SAMPLES_AVERAGES
|
||||||
if(!dump_count) { // we don't want to debug-out during the measurements.
|
if(!dump_count) { // we don't want to debug-out during the measurements.
|
||||||
|
|
||||||
@ -1107,6 +1117,7 @@ void dump(void) {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//#define DEBUG_DELTA_SAMPLE_THRESHOLD
|
||||||
#ifdef DEBUG_DELTA_SAMPLE_THRESHOLD
|
#ifdef DEBUG_DELTA_SAMPLE_THRESHOLD
|
||||||
print("\n");
|
print("\n");
|
||||||
//uint16_t db_delta = 0;
|
//uint16_t db_delta = 0;
|
||||||
@ -1121,7 +1132,7 @@ void dump(void) {
|
|||||||
printHex( column );
|
printHex( column );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define DEBUG_USB_KEYMAP
|
//#define DEBUG_USB_KEYMAP
|
||||||
#ifdef DEBUG_USB_KEYMAP
|
#ifdef DEBUG_USB_KEYMAP
|
||||||
print("\n ");
|
print("\n ");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user