2011-09-29 06:25:51 +00:00
|
|
|
/* Copyright (C) 2011 by Jacob Alexander
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// ----- Includes -----
|
|
|
|
|
2011-10-16 03:01:46 +00:00
|
|
|
// AVR Includes
|
|
|
|
#include <avr/interrupt.h>
|
|
|
|
|
|
|
|
// Project Includes
|
|
|
|
#include <led.h>
|
|
|
|
#include <print.h>
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// Local Includes
|
|
|
|
#include "scan_loop.h"
|
2011-10-16 03:01:46 +00:00
|
|
|
#include "matrix_scan.h"
|
2011-09-30 05:22:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Defines -----
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
// Debouncing Defines
|
|
|
|
#define SAMPLE_THRESHOLD 110
|
2011-09-30 05:22:19 +00:00
|
|
|
#define MAX_SAMPLES 127 // Max is 127, reaching 128 is very bad
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Macros -----
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
// Loop over all of the sampled keys of the given array
|
|
|
|
// If the number of samples is higher than the sample threshold, flag the high bit, clear otherwise
|
|
|
|
// This should be resetting VERY quickly, cutting off a potentially valid keypress is not an issue
|
|
|
|
#define DEBOUNCE_ASSESS(table,size) \
|
2011-10-16 03:01:46 +00:00
|
|
|
for ( uint8_t key = 1; key < size + 1; key++ ) \
|
|
|
|
table[key] = ( table[key] & ~(1 << 7) ) > SAMPLE_THRESHOLD ? (1 << 7) : 0x00
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// ----- Variables -----
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// Keeps track of the number of scans, so we only do a debounce assess when it would be valid (as it throws away data)
|
|
|
|
uint8_t scan_count = 0;
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-10-16 03:01:46 +00:00
|
|
|
// This is where the matrix scan data is held, as well as debouncing is evaluated to, which (depending on the read value) is handled
|
|
|
|
// by the macro module
|
|
|
|
uint8_t KeyIndex_Array[KEYBOARD_SIZE + 1];
|
|
|
|
|
2011-09-29 06:25:51 +00:00
|
|
|
|
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// ----- Functions -----
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-10-01 07:54:18 +00:00
|
|
|
// Setup
|
2011-10-16 03:01:46 +00:00
|
|
|
inline void scan_setup()
|
2011-09-29 06:25:51 +00:00
|
|
|
{
|
2011-10-16 03:01:46 +00:00
|
|
|
matrix_pinSetup( (uint8_t*)matrix_pinout );
|
2011-10-01 07:54:18 +00:00
|
|
|
}
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-10-01 07:54:18 +00:00
|
|
|
// Main Detection Loop
|
2011-10-16 03:01:46 +00:00
|
|
|
inline uint8_t scan_loop()
|
2011-10-01 07:54:18 +00:00
|
|
|
{
|
2011-09-30 05:22:19 +00:00
|
|
|
// Check count to see if the sample threshold may have been reached, otherwise collect more data
|
2011-10-17 03:08:37 +00:00
|
|
|
if ( scan_count < MAX_SAMPLES )
|
2011-10-16 03:01:46 +00:00
|
|
|
{
|
|
|
|
matrix_scan( (uint8_t*)matrix_pinout, KeyIndex_Array );
|
|
|
|
|
2011-10-17 03:08:37 +00:00
|
|
|
// scanDual requires 2 passes, and thus needs more memory per matrix_scan pass
|
|
|
|
#if scanMode == scanDual
|
|
|
|
scan_count += 2;
|
|
|
|
#else
|
|
|
|
scan_count++;
|
|
|
|
#endif
|
|
|
|
|
2011-10-16 03:01:46 +00:00
|
|
|
// Signal Main Detection Loop to continue scanning
|
|
|
|
return 0;
|
|
|
|
}
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// Reset Sample Counter
|
|
|
|
scan_count = 0;
|
2011-09-29 06:25:51 +00:00
|
|
|
|
2011-09-30 05:22:19 +00:00
|
|
|
// Assess debouncing sample table
|
2011-10-16 03:01:46 +00:00
|
|
|
DEBOUNCE_ASSESS( KeyIndex_Array, KeyIndex_Size );
|
|
|
|
|
|
|
|
// Ready to allow for USB send
|
|
|
|
return 1;
|
2011-09-29 06:25:51 +00:00
|
|
|
}
|
|
|
|
|