2016-05-09 01:50:28 +00:00
|
|
|
/* Copyright (C) 2014-2016 by Jacob Alexander
|
2014-08-23 18:32:46 +00:00
|
|
|
*
|
|
|
|
* This file is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This file 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this file. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-06-14 20:56:56 +00:00
|
|
|
#pragma once
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
// ----- Includes -----
|
|
|
|
|
2014-11-21 22:58:50 +00:00
|
|
|
// KLL Generated Defines
|
|
|
|
#include <kll_defs.h>
|
|
|
|
|
2014-08-23 18:32:46 +00:00
|
|
|
// Project Includes
|
|
|
|
#include <print.h>
|
|
|
|
#include <scan_loop.h>
|
|
|
|
#include <macro.h>
|
|
|
|
#include <output_com.h>
|
|
|
|
|
|
|
|
// USB HID Keymap list
|
|
|
|
#include <usb_hid.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-09-11 17:54:50 +00:00
|
|
|
// ----- Types -----
|
|
|
|
|
|
|
|
// - NOTE -
|
|
|
|
// It is possible to change the maximum state and indexing positions of the state machine.
|
|
|
|
// This usually affects the SRAM usage quite a bit, so it can be used to fit the code on smaller uCs
|
|
|
|
// Or to allow for nearly infinite states.
|
2014-11-21 22:58:50 +00:00
|
|
|
#if StateWordSize_define == 32
|
|
|
|
typedef uint32_t var_uint_t;
|
|
|
|
#elif StateWordSize_define == 16
|
|
|
|
typedef uint16_t var_uint_t;
|
|
|
|
#elif StateWordSize_define == 8
|
2014-09-11 18:17:17 +00:00
|
|
|
typedef uint8_t var_uint_t;
|
2014-11-21 22:58:50 +00:00
|
|
|
#else
|
|
|
|
#error "Invalid StateWordSize, possible values: 32, 16 and 8."
|
|
|
|
#endif
|
2014-09-11 17:54:50 +00:00
|
|
|
|
2016-05-09 01:50:28 +00:00
|
|
|
// - NOTE -
|
|
|
|
// It is possible to change the maximum number of trigger/result index sizes
|
|
|
|
// This will affect SRAM and flash usage, so it can be used to fit code on smaller uCs.
|
|
|
|
// Also allows for over 4 billion triggers and results (triggers and results have separate indices)
|
|
|
|
#if IndexWordSize_define == 32
|
|
|
|
typedef uint32_t index_uint_t;
|
|
|
|
#elif IndexWordSize_define == 16
|
|
|
|
typedef uint16_t index_uint_t;
|
|
|
|
#elif IndexWordSize_define == 8
|
|
|
|
typedef uint8_t index_uint_t;
|
|
|
|
#else
|
|
|
|
#error "Invalid IndexWordSize, possible values: 32, 16 and 8."
|
|
|
|
#endif
|
|
|
|
|
2014-09-11 17:54:50 +00:00
|
|
|
// - NOTE -
|
|
|
|
// Native pointer length
|
|
|
|
// This needs to be defined per microcontroller
|
|
|
|
// e.g. mk20s -> 32 bit
|
|
|
|
// atmega -> 16 bit
|
2015-01-01 01:13:44 +00:00
|
|
|
#if defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) || defined(_mk20dx256vlh7_) // ARM
|
2014-09-11 17:54:50 +00:00
|
|
|
typedef uint32_t nat_ptr_t;
|
2014-09-15 02:27:22 +00:00
|
|
|
#elif defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
|
|
|
|
typedef uint16_t nat_ptr_t;
|
|
|
|
#endif
|
2014-09-11 17:54:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-08-23 18:32:46 +00:00
|
|
|
// ----- Structs -----
|
|
|
|
|
|
|
|
// -- Result Macro
|
|
|
|
// Defines the sequence of combinations to as the Result of Trigger Macro
|
2014-09-17 06:29:21 +00:00
|
|
|
// For RAM optimization reasons, ResultMacro has been split into ResultMacro and ResultMacroRecord structures
|
2014-08-23 18:32:46 +00:00
|
|
|
//
|
|
|
|
// Capability + args per USB send
|
|
|
|
// Default Args (always sent): key state/analog of last key
|
|
|
|
// Combo Length of 0 signifies end of sequence
|
|
|
|
//
|
2014-09-20 02:11:37 +00:00
|
|
|
// ResultMacro.guide -> [<combo length>|<capability index>|<arg1>|<argn>|<capability index>|...|<combo length>|...|0]
|
2014-09-17 06:29:21 +00:00
|
|
|
//
|
|
|
|
// ResultMacroRecord.pos -> <current combo position>
|
|
|
|
// ResultMacroRecord.state -> <last key state>
|
|
|
|
// ResultMacroRecord.stateType -> <last key state type>
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
// ResultMacro struct, one is created per ResultMacro, no duplicates
|
|
|
|
typedef struct ResultMacro {
|
|
|
|
const uint8_t *guide;
|
2014-09-17 06:29:21 +00:00
|
|
|
} ResultMacro;
|
|
|
|
|
|
|
|
typedef struct ResultMacroRecord {
|
2014-09-11 17:54:50 +00:00
|
|
|
var_uint_t pos;
|
2014-08-23 18:32:46 +00:00
|
|
|
uint8_t state;
|
|
|
|
uint8_t stateType;
|
2014-09-17 06:29:21 +00:00
|
|
|
} ResultMacroRecord;
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
// Guide, key element
|
|
|
|
#define ResultGuideSize( guidePtr ) sizeof( ResultGuide ) - 1 + CapabilitiesList[ (guidePtr)->index ].argCount
|
|
|
|
typedef struct ResultGuide {
|
|
|
|
uint8_t index;
|
|
|
|
uint8_t args; // This is used as an array pointer (but for packing purposes, must be 8 bit)
|
|
|
|
} ResultGuide;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// -- Trigger Macro
|
|
|
|
// Defines the sequence of combinations to Trigger a Result Macro
|
2014-09-17 06:29:21 +00:00
|
|
|
// For RAM optimization reasons TriggerMacro has been split into TriggerMacro and TriggerMacroRecord
|
2014-08-23 18:32:46 +00:00
|
|
|
// Key Types:
|
|
|
|
// * 0x00 Normal (Press/Hold/Release)
|
|
|
|
// * 0x01 LED State (On/Off)
|
|
|
|
// * 0x02 Analog (Threshold)
|
|
|
|
// * 0x03-0xFE Reserved
|
|
|
|
// * 0xFF Debug State
|
|
|
|
//
|
|
|
|
// Key State:
|
|
|
|
// * Off - 0x00 (all flag states)
|
|
|
|
// * On - 0x01
|
|
|
|
// * Press/Hold/Release - 0x01/0x02/0x03
|
|
|
|
// * Threshold (Range) - 0x01 (Released), 0x10 (Light press), 0xFF (Max press)
|
|
|
|
// * Debug - 0xFF (Print capability name)
|
|
|
|
//
|
|
|
|
// Combo Length of 0 signifies end of sequence
|
|
|
|
//
|
|
|
|
// TriggerMacro.guide -> [<combo length>|<key1 type>|<key1 state>|<key1>...<keyn type>|<keyn state>|<keyn>|<combo length>...|0]
|
|
|
|
// TriggerMacro.result -> <index to result macro>
|
2014-09-17 06:29:21 +00:00
|
|
|
//
|
|
|
|
// TriggerMacroRecord.pos -> <current combo position>
|
|
|
|
// TriggerMacroRecord.state -> <status of the macro pos>
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
// TriggerMacro states
|
|
|
|
typedef enum TriggerMacroState {
|
|
|
|
TriggerMacro_Press, // Combo in sequence is passing
|
|
|
|
TriggerMacro_Release, // Move to next combo in sequence (or finish if at end of sequence)
|
|
|
|
TriggerMacro_Waiting, // Awaiting user input
|
|
|
|
} TriggerMacroState;
|
|
|
|
|
|
|
|
// TriggerMacro struct, one is created per TriggerMacro, no duplicates
|
|
|
|
typedef struct TriggerMacro {
|
|
|
|
const uint8_t *guide;
|
2014-09-17 00:04:59 +00:00
|
|
|
const var_uint_t result;
|
2014-09-17 06:29:21 +00:00
|
|
|
} TriggerMacro;
|
|
|
|
|
|
|
|
typedef struct TriggerMacroRecord {
|
2014-09-11 17:54:50 +00:00
|
|
|
var_uint_t pos;
|
2014-08-23 18:32:46 +00:00
|
|
|
TriggerMacroState state;
|
2014-09-17 06:29:21 +00:00
|
|
|
} TriggerMacroRecord;
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
// Guide, key element
|
|
|
|
#define TriggerGuideSize sizeof( TriggerGuide )
|
|
|
|
typedef struct TriggerGuide {
|
|
|
|
uint8_t type;
|
|
|
|
uint8_t state;
|
|
|
|
uint8_t scanCode;
|
|
|
|
} TriggerGuide;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Capabilities -----
|
|
|
|
|
|
|
|
// Capability
|
|
|
|
typedef struct Capability {
|
2014-09-17 00:04:59 +00:00
|
|
|
const void *func;
|
|
|
|
const uint8_t argCount;
|
2014-08-23 18:32:46 +00:00
|
|
|
} Capability;
|
|
|
|
|
|
|
|
// Total Number of Capabilities
|
2016-05-09 01:50:28 +00:00
|
|
|
// (generated by KLL)
|
|
|
|
#define CapabilitiesNum CapabilitiesNum_KLL
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -- Result Macros
|
|
|
|
|
|
|
|
// Guide_RM / Define_RM Pair
|
|
|
|
// Guide_RM( index ) = result;
|
|
|
|
// * index - Result Macro index number
|
|
|
|
// * result - Result Macro guide (see ResultMacro)
|
|
|
|
// Define_RM( index );
|
|
|
|
// * index - Result Macro index number
|
|
|
|
// Must be used after Guide_RM
|
|
|
|
#define Guide_RM( index ) const uint8_t rm##index##_guide[]
|
2014-09-17 06:29:21 +00:00
|
|
|
#define Define_RM( index ) { rm##index##_guide }
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -- Result Macro List
|
|
|
|
|
|
|
|
// Total number of result macros (rm's)
|
|
|
|
// Used to create pending rm's table
|
2016-05-09 01:50:28 +00:00
|
|
|
// (generated by KLL)
|
|
|
|
#define ResultMacroNum ResultMacroNum_KLL
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -- Trigger Macros
|
|
|
|
|
|
|
|
// Guide_TM / Define_TM Trigger Setup
|
|
|
|
// Guide_TM( index ) = trigger;
|
|
|
|
// * index - Trigger Macro index number
|
|
|
|
// * trigger - Trigger Macro guide (see TriggerMacro)
|
|
|
|
// Define_TM( index, result );
|
|
|
|
// * index - Trigger Macro index number
|
|
|
|
// * result - Result Macro index number which is triggered by this Trigger Macro
|
|
|
|
#define Guide_TM( index ) const uint8_t tm##index##_guide[]
|
2014-09-17 06:29:21 +00:00
|
|
|
#define Define_TM( index, result ) { tm##index##_guide, result }
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
// -- Trigger Macro List
|
|
|
|
|
|
|
|
// Total number of trigger macros (tm's)
|
|
|
|
// Used to create pending tm's table
|
2016-05-09 01:50:28 +00:00
|
|
|
// (generated by KLL)
|
|
|
|
#define TriggerMacroNum TriggerMacroNum_KLL
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Trigger Maps -----
|
|
|
|
|
|
|
|
// Define_TL( layer, scanCode ) = triggerList;
|
|
|
|
// * layer - basename of the layer
|
|
|
|
// * scanCode - Hex value of the scanCode
|
|
|
|
// * triggerList - Trigger List (see Trigger Lists)
|
2014-09-11 17:54:50 +00:00
|
|
|
#define Define_TL( layer, scanCode ) const nat_ptr_t layer##_tl_##scanCode[]
|
2014-08-23 18:32:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ----- Layer Index -----
|
|
|
|
|
|
|
|
// Defines each map of trigger macro lists
|
|
|
|
// Layer 0 is always the default map
|
|
|
|
// Layer States:
|
|
|
|
// * Off - 0x00
|
|
|
|
// * Shift - 0x01
|
|
|
|
// * Latch - 0x02
|
|
|
|
// * Lock - 0x04
|
2014-09-17 00:04:59 +00:00
|
|
|
// Layer states are stored in the LayerState array
|
2014-08-23 18:32:46 +00:00
|
|
|
//
|
|
|
|
// Except for Off, all states an exist simultaneously for each layer
|
|
|
|
// For example:
|
|
|
|
// state -> 0x04 + 0x01 = 0x05 (Shift + Lock), which is effectively Off (0x00)
|
|
|
|
//
|
2014-09-17 00:04:59 +00:00
|
|
|
// First defines the first used scan code (most keyboards start at 0, some start higher e.g. 0x40)
|
2014-08-23 18:32:46 +00:00
|
|
|
// - Compiler calculates this
|
|
|
|
//
|
2014-09-17 00:04:59 +00:00
|
|
|
// Last defines the last scan code used (helps reduce RAM usage)
|
|
|
|
//
|
2014-08-23 18:32:46 +00:00
|
|
|
// The name is defined for cli debugging purposes (Null terminated string)
|
|
|
|
|
|
|
|
typedef struct Layer {
|
2014-09-11 17:54:50 +00:00
|
|
|
const nat_ptr_t **triggerMap;
|
2014-08-23 18:32:46 +00:00
|
|
|
const char *name;
|
2014-09-17 00:04:59 +00:00
|
|
|
const uint8_t first;
|
|
|
|
const uint8_t last;
|
2014-08-23 18:32:46 +00:00
|
|
|
} Layer;
|
|
|
|
|
2014-09-17 00:04:59 +00:00
|
|
|
// Layer_IN( map, name, first );
|
|
|
|
// * map - Trigger map
|
|
|
|
// * name - Name of the trigger map
|
|
|
|
// * first - First scan code used (most keyboards start at 0, some start higher e.g. 0x40)
|
|
|
|
#define Layer_IN( map, name, first ) { map, name, first, sizeof( map ) / sizeof( nat_ptr_t ) - 1 + first }
|
2014-08-23 18:32:46 +00:00
|
|
|
|
2016-05-09 01:50:28 +00:00
|
|
|
// Total number of layers (generated by KLL)
|
|
|
|
#define LayerNum LayerNum_KLL
|
2014-08-23 18:32:46 +00:00
|
|
|
|