2014-04-06 18:49:27 +00:00
|
|
|
/* Copyright (C) 2013-2014 by Jacob Alexander
|
|
|
|
*
|
2013-11-17 21:42:41 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3.0 of the License, or (at your option) any later version.
|
2013-11-17 00:21:21 +00:00
|
|
|
*
|
2013-11-17 21:42:41 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2013-11-17 00:21:21 +00:00
|
|
|
*
|
2013-11-17 21:42:41 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2013-04-14 02:35:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SCAN_LOOP_H
|
|
|
|
#define __SCAN_LOOP_H
|
|
|
|
|
|
|
|
// ----- Includes -----
|
|
|
|
|
|
|
|
// Compiler Includes
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
// Local Includes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Defines -----
|
|
|
|
|
|
|
|
#define KEYBOARD_KEYS 0xFF // TODO Determine max number of keys
|
|
|
|
#define KEYBOARD_BUFFER 24 // Max number of key signals to buffer
|
|
|
|
// This limits the NKRO-ability, so at 24, the keyboard is 24KRO
|
|
|
|
// The buffer is really only needed for converter modules
|
|
|
|
// An alternative macro module could be written for matrix modules and still work well
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Variables -----
|
|
|
|
|
|
|
|
extern volatile uint8_t KeyIndex_Buffer[KEYBOARD_BUFFER];
|
|
|
|
extern volatile uint8_t KeyIndex_BufferUsed;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Functions -----
|
|
|
|
|
|
|
|
// Functions used by main.c
|
2014-04-16 07:15:09 +00:00
|
|
|
void Scan_setup();
|
|
|
|
uint8_t Scan_loop();
|
2013-04-14 02:35:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Functions available to macro.c
|
2014-04-06 18:49:27 +00:00
|
|
|
uint8_t Scan_sendData( uint8_t dataPayload );
|
2013-04-14 02:35:59 +00:00
|
|
|
|
2014-09-11 17:57:30 +00:00
|
|
|
void Scan_finishedWithMacro( uint8_t sentKeys );
|
|
|
|
void Scan_finishedWithOutput( uint8_t sentKeys );
|
2013-04-14 02:35:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif // __SCAN_LOOP_H
|
|
|
|
|