Moved key_timer out of function.

This commit is contained in:
Ole Anders 2017-03-28 16:50:44 +02:00
parent 48dfc77718
commit c72ca58528

View file

@ -1,13 +1,14 @@
#include "satan.h" #include "satan.h"
static uint16_t key_timer;
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
// general keydefs // general keydefs
#define norm 0 // Default layer #define norm 0 // Default layer
#define elev 1 // Layer directional keys #define elev 1 // Layer directional keys
#define supr 2 // F-keys and mediakeys #define supr 2 // F-keys and mediakeys
#define spac 3 #define spac 3 //
#define FNO1 4 // #define FNO1 4 //
#define FNO2 5 // #define FNO2 5 //
#define FNO3 6 // #define FNO3 6 //
#define MAC0 M(0) // #define MAC0 M(0) //
#define MAC1 M(1) // #define MAC1 M(1) //
#define MAC2 M(2) // #define MAC2 M(2) //
@ -143,7 +144,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
}; };
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { // MACRODOWN only works in this function const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) { // MACRODOWN only works in this function
static uint16_t key_timer;
bool checkTime(){ bool checkTime(){
return (timer_elapsed(key_timer) < 150) ? true : false; return (timer_elapsed(key_timer) < 150) ? true : false;
} }