4099536c0e
* add initial support for hadron ver3 * add initial support for hadron ver3 * pull qwiic support for micro_led to be modified for use in hadron's 64x24 ssd1306 oled display * initial work on OLED using qwiic driver * early work to get 128x32 oled working by redefining qwiic micro oled parameters. Currently working, but would affect qwiic's micro oled functionality * moved oled defines to config.h and added ifndef to micro_oled driver * WORKING :D - note, still work in progress to get the start location correct on the 128x32 display. * added equation to automatically calculate display offset based on screen width * adding time-out timer to oled display * changed read lock staus via read_led_state * lock indications fixes * Added scroll lock indication to oled * add support for DRV2605 haptic driver * Improve readabiity of DRV2605 driver. -added typedef for waveform library -added unions for registers * Update keyboards/hadron/ver2/keymaps/default/config.h Co-Authored-By: ishtob <ishtob@gmail.com> * Update keyboards/hadron/ver2/keymaps/default/config.h Co-Authored-By: ishtob <ishtob@gmail.com> * Update keyboards/hadron/ver2/keymaps/default/config.h Co-Authored-By: ishtob <ishtob@gmail.com> * Update keyboards/hadron/ver2/keymaps/default/config.h Co-Authored-By: ishtob <ishtob@gmail.com> * Fixes for PR * PR fixes * fix old persistent layer function to use new set_single_persistent_default_layer * fix issues with changing makefile defines that broken per-key haptic pulse * Comment fixes * Add definable parameter and auto-calibration based on motor choice
106 lines
2.9 KiB
C
106 lines
2.9 KiB
C
/*
|
|
Copyright 2013 Jun Wako <wakojun@gmail.com>
|
|
|
|
This program 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef ACTION_LAYER_H
|
|
#define ACTION_LAYER_H
|
|
|
|
#include <stdint.h>
|
|
#include "keyboard.h"
|
|
#include "action.h"
|
|
|
|
|
|
/*
|
|
* Default Layer
|
|
*/
|
|
extern uint32_t default_layer_state;
|
|
void default_layer_debug(void);
|
|
void default_layer_set(uint32_t state);
|
|
|
|
__attribute__((weak))
|
|
uint32_t default_layer_state_set_kb(uint32_t state);
|
|
__attribute__((weak))
|
|
uint32_t default_layer_state_set_user(uint32_t state);
|
|
|
|
#ifndef NO_ACTION_LAYER
|
|
/* bitwise operation */
|
|
void default_layer_or(uint32_t state);
|
|
void default_layer_and(uint32_t state);
|
|
void default_layer_xor(uint32_t state);
|
|
#else
|
|
#define default_layer_or(state)
|
|
#define default_layer_and(state)
|
|
#define default_layer_xor(state)
|
|
#endif
|
|
|
|
|
|
/*
|
|
* Keymap Layer
|
|
*/
|
|
#ifndef NO_ACTION_LAYER
|
|
extern uint32_t layer_state;
|
|
|
|
void layer_state_set(uint32_t state);
|
|
bool layer_state_is(uint8_t layer);
|
|
bool layer_state_cmp(uint32_t layer1, uint8_t layer2);
|
|
|
|
void layer_debug(void);
|
|
void layer_clear(void);
|
|
void layer_move(uint8_t layer);
|
|
void layer_on(uint8_t layer);
|
|
void layer_off(uint8_t layer);
|
|
void layer_invert(uint8_t layer);
|
|
/* bitwise operation */
|
|
void layer_or(uint32_t state);
|
|
void layer_and(uint32_t state);
|
|
void layer_xor(uint32_t state);
|
|
#else
|
|
#define layer_state 0
|
|
|
|
#define layer_state_set(layer)
|
|
#define layer_state_is(layer) (layer == 0)
|
|
#define layer_state_cmp(state, layer) (state == 0 ? layer == 0 : (state & 1UL << layer) != 0)
|
|
|
|
#define layer_debug()
|
|
#define layer_clear()
|
|
#define layer_move(layer)
|
|
#define layer_on(layer)
|
|
#define layer_off(layer)
|
|
#define layer_invert(layer)
|
|
#define layer_or(state)
|
|
#define layer_and(state)
|
|
#define layer_xor(state)
|
|
#endif
|
|
|
|
uint32_t layer_state_set_user(uint32_t state);
|
|
uint32_t layer_state_set_kb(uint32_t state);
|
|
|
|
/* pressed actions cache */
|
|
#if !defined(NO_ACTION_LAYER) && !defined(STRICT_LAYER_RELEASE)
|
|
/* The number of bits needed to represent the layer number: log2(32). */
|
|
#define MAX_LAYER_BITS 5
|
|
void update_source_layers_cache(keypos_t key, uint8_t layer);
|
|
uint8_t read_source_layers_cache(keypos_t key);
|
|
#endif
|
|
action_t store_or_get_action(bool pressed, keypos_t key);
|
|
|
|
/* return the topmost non-transparent layer currently associated with key */
|
|
int8_t layer_switch_get_layer(keypos_t key);
|
|
|
|
/* return action depending on current layer status */
|
|
action_t layer_switch_get_action(keypos_t key);
|
|
|
|
#endif
|