2015-04-09 18:32:04 +02:00
|
|
|
/*
|
2016-05-24 05:42:21 +02:00
|
|
|
Copyright 2011, 2012, 2013 Jun Wako <wakojun@gmail.com>
|
2015-04-09 18:32:04 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
2017-02-06 01:55:08 +01:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "keyboard.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "keycode_config.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "matrix.h"
|
2023-03-27 21:08:17 +02:00
|
|
|
#include "keymap_introspection.h"
|
2022-01-23 03:41:57 +01:00
|
|
|
#include "magic.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "host.h"
|
|
|
|
#include "led.h"
|
|
|
|
#include "keycode.h"
|
|
|
|
#include "timer.h"
|
2020-12-01 19:04:42 +01:00
|
|
|
#include "sync_timer.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#include "print.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "sendchar.h"
|
2016-05-24 05:42:21 +02:00
|
|
|
#include "eeconfig.h"
|
2016-07-07 11:46:10 +02:00
|
|
|
#include "action_layer.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
# include "audio.h"
|
|
|
|
#endif
|
|
|
|
#if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
|
|
|
|
# include "process_music.h"
|
|
|
|
#endif
|
2019-10-17 18:48:58 +02:00
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
# include "backlight.h"
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "mousekey.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "ps2_mouse.h"
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
2016-06-13 00:01:55 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "rgblight.h"
|
2016-06-13 00:01:55 +02:00
|
|
|
#endif
|
2021-03-28 08:59:44 +02:00
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
# include "led_matrix.h"
|
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
# include "rgb_matrix.h"
|
|
|
|
#endif
|
2020-05-02 23:44:36 +02:00
|
|
|
#ifdef ENCODER_ENABLE
|
|
|
|
# include "encoder.h"
|
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
# include "haptic.h"
|
|
|
|
#endif
|
|
|
|
#ifdef AUTO_SHIFT_ENABLE
|
|
|
|
# include "process_auto_shift.h"
|
|
|
|
#endif
|
|
|
|
#ifdef COMBO_ENABLE
|
|
|
|
# include "process_combo.h"
|
|
|
|
#endif
|
|
|
|
#ifdef TAP_DANCE_ENABLE
|
|
|
|
# include "process_tap_dance.h"
|
|
|
|
#endif
|
2017-07-27 06:51:41 +02:00
|
|
|
#ifdef STENO_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "process_steno.h"
|
2017-07-27 06:51:41 +02:00
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef KEY_OVERRIDE_ENABLE
|
|
|
|
# include "process_key_override.h"
|
|
|
|
#endif
|
|
|
|
#ifdef SECURE_ENABLE
|
|
|
|
# include "secure.h"
|
|
|
|
#endif
|
2017-10-06 19:13:08 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "pointing_device.h"
|
2017-10-06 19:13:08 +02:00
|
|
|
#endif
|
2018-02-08 21:07:46 +01:00
|
|
|
#ifdef MIDI_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "process_midi.h"
|
2018-02-08 21:07:46 +01:00
|
|
|
#endif
|
2020-07-25 14:01:15 +02:00
|
|
|
#ifdef JOYSTICK_ENABLE
|
2023-07-16 15:42:56 +02:00
|
|
|
# include "joystick.h"
|
2020-07-25 14:01:15 +02:00
|
|
|
#endif
|
2018-07-15 19:31:45 +02:00
|
|
|
#ifdef HD44780_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "hd44780.h"
|
2018-07-15 19:31:45 +02:00
|
|
|
#endif
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "oled_driver.h"
|
2019-05-07 00:06:43 +02:00
|
|
|
#endif
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
# include "st7565.h"
|
|
|
|
#endif
|
2020-01-03 21:52:00 +01:00
|
|
|
#ifdef VIA_ENABLE
|
|
|
|
# include "via.h"
|
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
|
|
|
# include "dip_switch.h"
|
|
|
|
#endif
|
2021-04-25 10:57:49 +02:00
|
|
|
#ifdef EEPROM_DRIVER
|
|
|
|
# include "eeprom_driver.h"
|
|
|
|
#endif
|
2021-06-18 01:09:43 +02:00
|
|
|
#if defined(CRC_ENABLE)
|
|
|
|
# include "crc.h"
|
|
|
|
#endif
|
2021-10-28 23:31:59 +02:00
|
|
|
#ifdef VIRTSER_ENABLE
|
|
|
|
# include "virtser.h"
|
|
|
|
#endif
|
2021-10-29 00:43:57 +02:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
# include "sleep_led.h"
|
|
|
|
#endif
|
2022-01-23 03:41:57 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
# include "split_util.h"
|
|
|
|
#endif
|
|
|
|
#ifdef BLUETOOTH_ENABLE
|
2022-09-29 19:38:09 +02:00
|
|
|
# include "bluetooth.h"
|
2022-01-23 03:41:57 +01:00
|
|
|
#endif
|
2022-05-14 08:00:32 +02:00
|
|
|
#ifdef CAPS_WORD_ENABLE
|
|
|
|
# include "caps_word.h"
|
|
|
|
#endif
|
2023-02-12 17:19:02 +01:00
|
|
|
#ifdef LEADER_ENABLE
|
|
|
|
# include "leader.h"
|
|
|
|
#endif
|
2023-07-16 15:42:56 +02:00
|
|
|
#ifdef UNICODE_COMMON_ENABLE
|
|
|
|
# include "unicode.h"
|
|
|
|
#endif
|
|
|
|
#ifdef WPM_ENABLE
|
|
|
|
# include "wpm.h"
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2021-01-21 12:24:07 +01:00
|
|
|
static uint32_t last_input_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_input_activity_time(void) {
|
|
|
|
return last_input_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_input_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_input_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-21 12:24:07 +01:00
|
|
|
|
2021-01-17 19:01:38 +01:00
|
|
|
static uint32_t last_matrix_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_matrix_activity_time(void) {
|
|
|
|
return last_matrix_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_matrix_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_matrix_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
|
|
|
void last_matrix_activity_trigger(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
last_matrix_modification_time = last_input_modification_time = sync_timer_read32();
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-21 12:24:07 +01:00
|
|
|
|
|
|
|
static uint32_t last_encoder_modification_time = 0;
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t last_encoder_activity_time(void) {
|
|
|
|
return last_encoder_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_encoder_activity_elapsed(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
return sync_timer_elapsed32(last_encoder_modification_time);
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
|
|
|
void last_encoder_activity_trigger(void) {
|
2023-03-21 10:16:11 +01:00
|
|
|
last_encoder_modification_time = last_input_modification_time = sync_timer_read32();
|
|
|
|
}
|
|
|
|
|
2023-03-31 03:27:39 +02:00
|
|
|
static uint32_t last_pointing_device_modification_time = 0;
|
|
|
|
uint32_t last_pointing_device_activity_time(void) {
|
|
|
|
return last_pointing_device_modification_time;
|
|
|
|
}
|
|
|
|
uint32_t last_pointing_device_activity_elapsed(void) {
|
|
|
|
return sync_timer_elapsed32(last_pointing_device_modification_time);
|
|
|
|
}
|
|
|
|
void last_pointing_device_activity_trigger(void) {
|
|
|
|
last_pointing_device_modification_time = last_input_modification_time = sync_timer_read32();
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_activity_timestamps(uint32_t matrix_timestamp, uint32_t encoder_timestamp, uint32_t pointing_device_timestamp) {
|
|
|
|
last_matrix_modification_time = matrix_timestamp;
|
|
|
|
last_encoder_modification_time = encoder_timestamp;
|
|
|
|
last_pointing_device_modification_time = pointing_device_timestamp;
|
|
|
|
last_input_modification_time = MAX(matrix_timestamp, MAX(encoder_timestamp, pointing_device_timestamp));
|
2022-02-12 19:29:31 +01:00
|
|
|
}
|
2021-01-17 19:01:38 +01:00
|
|
|
|
2019-10-15 14:32:52 +02:00
|
|
|
// Only enable this if console is enabled to print to
|
2021-01-27 18:34:50 +01:00
|
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE)
|
2021-02-05 14:27:24 +01:00
|
|
|
static uint32_t matrix_timer = 0;
|
|
|
|
static uint32_t matrix_scan_count = 0;
|
2021-01-27 18:34:50 +01:00
|
|
|
static uint32_t last_matrix_scan_count = 0;
|
2019-10-15 14:32:52 +02:00
|
|
|
|
|
|
|
void matrix_scan_perf_task(void) {
|
|
|
|
matrix_scan_count++;
|
|
|
|
|
|
|
|
uint32_t timer_now = timer_read32();
|
2022-04-09 20:49:20 +02:00
|
|
|
if (TIMER_DIFF_32(timer_now, matrix_timer) >= 1000) {
|
2021-01-27 18:34:50 +01:00
|
|
|
# if defined(CONSOLE_ENABLE)
|
2021-02-03 02:30:33 +01:00
|
|
|
dprintf("matrix scan frequency: %lu\n", matrix_scan_count);
|
2021-01-27 18:34:50 +01:00
|
|
|
# endif
|
|
|
|
last_matrix_scan_count = matrix_scan_count;
|
2021-02-05 14:27:24 +01:00
|
|
|
matrix_timer = timer_now;
|
|
|
|
matrix_scan_count = 0;
|
2019-10-15 14:32:52 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-27 18:34:50 +01:00
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
uint32_t get_matrix_scan_rate(void) {
|
|
|
|
return last_matrix_scan_count;
|
|
|
|
}
|
2019-10-15 14:32:52 +02:00
|
|
|
#else
|
|
|
|
# define matrix_scan_perf_task()
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MATRIX_HAS_GHOST
|
2022-09-29 19:25:55 +02:00
|
|
|
static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata) {
|
2017-05-14 03:24:43 +02:00
|
|
|
matrix_row_t out = 0;
|
2017-05-15 00:36:44 +02:00
|
|
|
for (uint8_t col = 0; col < MATRIX_COLS; col++) {
|
2019-08-30 20:19:03 +02:00
|
|
|
// read each key in the row data and check if the keymap defines it as a real key
|
2023-04-30 03:56:58 +02:00
|
|
|
if (keycode_at_keymap_location(0, row, col) && (rowdata & (((matrix_row_t)1) << col))) {
|
2019-08-30 20:19:03 +02:00
|
|
|
// this creates new row data, if a key is defined in the keymap, it will be set here
|
2023-04-30 03:56:58 +02:00
|
|
|
out |= ((matrix_row_t)1) << col;
|
2017-05-14 03:24:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static inline bool popcount_more_than_one(matrix_row_t rowdata) {
|
2022-02-12 19:29:31 +01:00
|
|
|
rowdata &= rowdata - 1; // if there are less than two bits (keys) set, rowdata will become zero
|
2017-05-15 00:36:44 +02:00
|
|
|
return rowdata;
|
2017-05-13 22:19:28 +02:00
|
|
|
}
|
2017-05-14 04:07:05 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) {
|
2017-05-13 17:51:20 +02:00
|
|
|
/* No ghost exists when less than 2 keys are down on the row.
|
|
|
|
If there are "active" blanks in the matrix, the key can't be pressed by the user,
|
|
|
|
there is no doubt as to which keys are really being pressed.
|
|
|
|
The ghosts will be ignored, they are KC_NO. */
|
2017-05-15 00:36:44 +02:00
|
|
|
rowdata = get_real_keys(row, rowdata);
|
2019-08-30 20:19:03 +02:00
|
|
|
if ((popcount_more_than_one(rowdata)) == 0) {
|
2017-05-15 00:36:44 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/* Ghost occurs when the row shares a column line with other row,
|
|
|
|
and two columns are read on each row. Blanks in the matrix don't matter,
|
|
|
|
so they are filtered out.
|
|
|
|
If there are two or more real keys pressed and they match columns with
|
|
|
|
at least two of another row's real keys, the row will be ignored. Keep in mind,
|
|
|
|
we are checking one row at a time, not all of them at once.
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
|
|
|
|
if (i != row && popcount_more_than_one(get_real_keys(i, matrix_get_row(i)) & rowdata)) {
|
2016-07-04 17:45:58 +02:00
|
|
|
return true;
|
2017-05-13 17:51:20 +02:00
|
|
|
}
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2017-05-14 01:57:23 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
#else
|
|
|
|
|
|
|
|
static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#endif
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief matrix_setup
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
__attribute__((weak)) void matrix_setup(void) {}
|
2015-04-09 18:32:04 +02:00
|
|
|
|
2019-02-15 05:18:54 +01:00
|
|
|
/** \brief keyboard_pre_init_user
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2019-08-30 20:19:03 +02:00
|
|
|
__attribute__((weak)) void keyboard_pre_init_user(void) {}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_pre_init_kb
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) void keyboard_pre_init_kb(void) {
|
|
|
|
keyboard_pre_init_user();
|
|
|
|
}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_post_init_user
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
__attribute__((weak)) void keyboard_post_init_user(void) {}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
|
|
|
/** \brief keyboard_post_init_kb
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
|
|
|
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) void keyboard_post_init_kb(void) {
|
|
|
|
keyboard_post_init_user();
|
|
|
|
}
|
2019-02-15 05:18:54 +01:00
|
|
|
|
2023-02-12 17:38:36 +01:00
|
|
|
/** \brief matrix_can_read
|
|
|
|
*
|
|
|
|
* Allows overriding when matrix scanning operations should be executed.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) bool matrix_can_read(void) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief keyboard_setup
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2016-05-24 05:42:21 +02:00
|
|
|
void keyboard_setup(void) {
|
2021-02-14 02:44:22 +01:00
|
|
|
print_set_sendchar(sendchar);
|
2021-04-25 10:57:49 +02:00
|
|
|
#ifdef EEPROM_DRIVER
|
|
|
|
eeprom_driver_init();
|
|
|
|
#endif
|
2015-05-17 12:34:34 +02:00
|
|
|
matrix_setup();
|
2019-02-15 05:18:54 +01:00
|
|
|
keyboard_pre_init_kb();
|
2015-05-17 12:34:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-18 01:18:58 +02:00
|
|
|
#ifndef SPLIT_KEYBOARD
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief is_keyboard_master
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool is_keyboard_master(void) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-09-30 10:58:09 +02:00
|
|
|
|
2020-11-19 01:50:32 +01:00
|
|
|
/** \brief is_keyboard_left
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool is_keyboard_left(void) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-11-19 01:50:32 +01:00
|
|
|
|
2021-08-18 01:18:58 +02:00
|
|
|
#endif
|
|
|
|
|
2020-05-03 01:39:37 +02:00
|
|
|
/** \brief should_process_keypress
|
|
|
|
*
|
|
|
|
* Override this function if you have a condition where keypresses processing should change:
|
|
|
|
* - splits where the slave side needs to process for rgb/oled functionality
|
|
|
|
*/
|
2022-02-12 19:29:31 +01:00
|
|
|
__attribute__((weak)) bool should_process_keypress(void) {
|
|
|
|
return is_keyboard_master();
|
|
|
|
}
|
2020-05-03 01:39:37 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
/** \brief housekeeping_task_kb
|
|
|
|
*
|
|
|
|
* Override this function if you have a need to execute code for every keyboard main loop iteration.
|
|
|
|
* This is specific to keyboard-level functionality.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) void housekeeping_task_kb(void) {}
|
|
|
|
|
|
|
|
/** \brief housekeeping_task_user
|
|
|
|
*
|
|
|
|
* Override this function if you have a need to execute code for every keyboard main loop iteration.
|
|
|
|
* This is specific to user/keymap-level functionality.
|
|
|
|
*/
|
|
|
|
__attribute__((weak)) void housekeeping_task_user(void) {}
|
|
|
|
|
2021-05-18 09:02:28 +02:00
|
|
|
/** \brief housekeeping_task
|
|
|
|
*
|
|
|
|
* Invokes hooks for executing code after QMK is done after each loop iteration.
|
|
|
|
*/
|
|
|
|
void housekeeping_task(void) {
|
|
|
|
housekeeping_task_kb();
|
|
|
|
housekeeping_task_user();
|
|
|
|
}
|
|
|
|
|
2022-01-23 03:41:57 +01:00
|
|
|
/** \brief Init tasks previously located in matrix_init_quantum
|
|
|
|
*
|
|
|
|
* TODO: rationalise against keyboard_init and current split role
|
|
|
|
*/
|
|
|
|
void quantum_init(void) {
|
|
|
|
magic();
|
|
|
|
led_init_ports();
|
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init_ports();
|
|
|
|
#endif
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
audio_init();
|
|
|
|
#endif
|
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
led_matrix_init();
|
|
|
|
#endif
|
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
rgb_matrix_init();
|
|
|
|
#endif
|
|
|
|
#if defined(UNICODE_COMMON_ENABLE)
|
|
|
|
unicode_input_mode_init();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-03-22 07:50:38 +01:00
|
|
|
/** \brief keyboard_init
|
|
|
|
*
|
|
|
|
* FIXME: needs doc
|
|
|
|
*/
|
2016-05-24 05:42:21 +02:00
|
|
|
void keyboard_init(void) {
|
2015-04-09 18:32:04 +02:00
|
|
|
timer_init();
|
2020-12-01 19:04:42 +01:00
|
|
|
sync_timer_init();
|
2021-08-21 06:02:53 +02:00
|
|
|
#ifdef VIA_ENABLE
|
|
|
|
via_init();
|
2022-01-23 03:41:57 +01:00
|
|
|
#endif
|
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
split_pre_init();
|
2022-11-27 00:07:35 +01:00
|
|
|
#endif
|
|
|
|
#ifdef ENCODER_ENABLE
|
|
|
|
encoder_init();
|
2021-08-21 06:02:53 +02:00
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
matrix_init();
|
2022-01-23 03:41:57 +01:00
|
|
|
quantum_init();
|
2021-06-18 01:09:43 +02:00
|
|
|
#if defined(CRC_ENABLE)
|
|
|
|
crc_init();
|
|
|
|
#endif
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-05-07 00:06:43 +02:00
|
|
|
oled_init(OLED_ROTATION_0);
|
|
|
|
#endif
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
st7565_init(DISPLAY_ROTATION_0);
|
|
|
|
#endif
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_init();
|
|
|
|
#endif
|
|
|
|
#ifdef BACKLIGHT_ENABLE
|
|
|
|
backlight_init();
|
|
|
|
#endif
|
2016-06-13 00:01:55 +02:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
|
|
|
rgblight_init();
|
|
|
|
#endif
|
2022-06-23 20:43:24 +02:00
|
|
|
#ifdef STENO_ENABLE_ALL
|
2017-07-27 06:51:41 +02:00
|
|
|
steno_init();
|
|
|
|
#endif
|
2016-03-29 02:45:20 +02:00
|
|
|
#if defined(NKRO_ENABLE) && defined(FORCE_NKRO)
|
2016-09-07 06:19:01 +02:00
|
|
|
keymap_config.nkro = 1;
|
2019-12-11 20:39:30 +01:00
|
|
|
eeconfig_update_keymap(keymap_config.raw);
|
2016-03-28 07:03:21 +02:00
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
|
|
|
dip_switch_init();
|
|
|
|
#endif
|
2021-10-24 21:39:41 +02:00
|
|
|
#ifdef SLEEP_LED_ENABLE
|
|
|
|
sleep_led_init();
|
|
|
|
#endif
|
|
|
|
#ifdef VIRTSER_ENABLE
|
|
|
|
virtser_init();
|
|
|
|
#endif
|
2022-01-23 03:41:57 +01:00
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
split_post_init();
|
|
|
|
#endif
|
2022-07-21 19:16:44 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
// init after split init
|
|
|
|
pointing_device_init();
|
|
|
|
#endif
|
2022-09-29 19:38:09 +02:00
|
|
|
#ifdef BLUETOOTH_ENABLE
|
|
|
|
bluetooth_init();
|
2022-09-07 20:59:24 +02:00
|
|
|
#endif
|
2023-09-25 04:23:31 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
haptic_init();
|
|
|
|
#endif
|
2020-06-03 01:32:02 +02:00
|
|
|
|
2020-11-28 21:02:18 +01:00
|
|
|
#if defined(DEBUG_MATRIX_SCAN_RATE) && defined(CONSOLE_ENABLE)
|
|
|
|
debug_enable = true;
|
|
|
|
#endif
|
|
|
|
|
2019-02-15 05:18:54 +01:00
|
|
|
keyboard_post_init_kb(); /* Always keep this last */
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
|
2021-02-16 01:30:33 +01:00
|
|
|
/** \brief key_event_task
|
|
|
|
*
|
|
|
|
* This function is responsible for calling into other systems when they need to respond to electrical switch press events.
|
|
|
|
* This is differnet than keycode events as no layer processing, or filtering occurs.
|
|
|
|
*/
|
|
|
|
void switch_events(uint8_t row, uint8_t col, bool pressed) {
|
2021-04-13 11:51:03 +02:00
|
|
|
#if defined(LED_MATRIX_ENABLE)
|
|
|
|
process_led_matrix(row, col, pressed);
|
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#if defined(RGB_MATRIX_ENABLE)
|
|
|
|
process_rgb_matrix(row, col, pressed);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
/**
|
|
|
|
* @brief Generates a tick event at a maximum rate of 1KHz that drives the
|
|
|
|
* internal QMK state machine.
|
|
|
|
*/
|
|
|
|
static inline void generate_tick_event(void) {
|
|
|
|
static uint16_t last_tick = 0;
|
|
|
|
const uint16_t now = timer_read();
|
|
|
|
if (TIMER_DIFF_16(now, last_tick) != 0) {
|
2023-04-03 10:33:45 +02:00
|
|
|
action_exec(MAKE_TICK_EVENT);
|
2022-08-06 12:51:13 +02:00
|
|
|
last_tick = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This task scans the keyboards matrix and processes any key presses
|
|
|
|
* that occur.
|
2018-03-22 07:50:38 +01:00
|
|
|
*
|
2022-08-06 12:51:13 +02:00
|
|
|
* @return true Matrix did change
|
|
|
|
* @return false Matrix didn't change
|
2016-07-04 17:45:58 +02:00
|
|
|
*/
|
2022-08-06 12:51:13 +02:00
|
|
|
static bool matrix_task(void) {
|
2023-02-12 17:38:36 +01:00
|
|
|
if (!matrix_can_read()) {
|
|
|
|
generate_tick_event();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
static matrix_row_t matrix_previous[MATRIX_ROWS];
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
matrix_scan();
|
|
|
|
bool matrix_changed = false;
|
|
|
|
for (uint8_t row = 0; row < MATRIX_ROWS && !matrix_changed; row++) {
|
|
|
|
matrix_changed |= matrix_previous[row] ^ matrix_get_row(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix_scan_perf_task();
|
|
|
|
|
|
|
|
// Short-circuit the complete matrix processing if it is not necessary
|
|
|
|
if (!matrix_changed) {
|
|
|
|
generate_tick_event();
|
|
|
|
return matrix_changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (debug_config.matrix) {
|
|
|
|
matrix_print();
|
|
|
|
}
|
|
|
|
|
|
|
|
const bool process_keypress = should_process_keypress();
|
|
|
|
|
|
|
|
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
|
|
|
|
const matrix_row_t current_row = matrix_get_row(row);
|
|
|
|
const matrix_row_t row_changes = current_row ^ matrix_previous[row];
|
|
|
|
|
|
|
|
if (!row_changes || has_ghost_in_row(row, current_row)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
matrix_row_t col_mask = 1;
|
|
|
|
for (uint8_t col = 0; col < MATRIX_COLS; col++, col_mask <<= 1) {
|
|
|
|
if (row_changes & col_mask) {
|
|
|
|
const bool key_pressed = current_row & col_mask;
|
|
|
|
|
|
|
|
if (process_keypress) {
|
|
|
|
action_exec(MAKE_KEYEVENT(row, col, key_pressed));
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
2022-08-06 12:51:13 +02:00
|
|
|
|
|
|
|
switch_events(row, col, key_pressed);
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
matrix_previous[row] = current_row;
|
|
|
|
}
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2022-01-09 04:50:44 +01:00
|
|
|
return matrix_changed;
|
|
|
|
}
|
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
/** \brief Tasks previously located in matrix_scan_quantum
|
|
|
|
*
|
|
|
|
* TODO: rationalise against keyboard_task and current split role
|
|
|
|
*/
|
|
|
|
void quantum_task(void) {
|
|
|
|
#ifdef SPLIT_KEYBOARD
|
|
|
|
// some tasks should only run on master
|
|
|
|
if (!is_keyboard_master()) return;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIO_ENABLE) && defined(AUDIO_INIT_DELAY)
|
|
|
|
// There are some tasks that need to be run a little bit
|
|
|
|
// after keyboard startup, or else they will not work correctly
|
|
|
|
// because of interaction with the USB device state, which
|
|
|
|
// may still be in flux...
|
|
|
|
//
|
|
|
|
// At the moment the only feature that needs this is the
|
|
|
|
// startup song.
|
|
|
|
static bool delayed_tasks_run = false;
|
|
|
|
static uint16_t delayed_task_timer = 0;
|
|
|
|
if (!delayed_tasks_run) {
|
|
|
|
if (!delayed_task_timer) {
|
|
|
|
delayed_task_timer = timer_read();
|
|
|
|
} else if (timer_elapsed(delayed_task_timer) > 300) {
|
|
|
|
audio_startup();
|
|
|
|
delayed_tasks_run = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(AUDIO_ENABLE) && !defined(NO_MUSIC_MODE)
|
|
|
|
music_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef KEY_OVERRIDE_ENABLE
|
|
|
|
key_override_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef SEQUENCER_ENABLE
|
|
|
|
sequencer_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TAP_DANCE_ENABLE
|
|
|
|
tap_dance_task();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef COMBO_ENABLE
|
|
|
|
combo_task();
|
|
|
|
#endif
|
|
|
|
|
2023-02-12 17:19:02 +01:00
|
|
|
#ifdef LEADER_ENABLE
|
|
|
|
leader_task();
|
|
|
|
#endif
|
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
#ifdef WPM_ENABLE
|
|
|
|
decay_wpm();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DIP_SWITCH_ENABLE
|
2023-12-08 16:57:34 +01:00
|
|
|
dip_switch_task();
|
2022-01-19 18:38:48 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef AUTO_SHIFT_ENABLE
|
|
|
|
autoshift_matrix_scan();
|
|
|
|
#endif
|
2022-04-16 20:13:05 +02:00
|
|
|
|
2022-05-14 08:00:32 +02:00
|
|
|
#ifdef CAPS_WORD_ENABLE
|
|
|
|
caps_word_task();
|
|
|
|
#endif
|
|
|
|
|
2022-04-16 20:13:05 +02:00
|
|
|
#ifdef SECURE_ENABLE
|
|
|
|
secure_task();
|
|
|
|
#endif
|
2022-01-19 18:38:48 +01:00
|
|
|
}
|
|
|
|
|
2022-08-06 12:51:13 +02:00
|
|
|
/** \brief Main task that is repeatedly called as fast as possible. */
|
2022-01-09 04:50:44 +01:00
|
|
|
void keyboard_task(void) {
|
2023-03-31 03:27:39 +02:00
|
|
|
__attribute__((unused)) bool activity_has_occurred = false;
|
|
|
|
if (matrix_task()) {
|
2022-08-06 12:51:13 +02:00
|
|
|
last_matrix_activity_trigger();
|
2023-03-31 03:27:39 +02:00
|
|
|
activity_has_occurred = true;
|
2022-08-06 12:51:13 +02:00
|
|
|
}
|
2019-10-15 14:32:52 +02:00
|
|
|
|
2022-01-19 18:38:48 +01:00
|
|
|
quantum_task();
|
|
|
|
|
2022-10-06 11:52:42 +02:00
|
|
|
#if defined(SPLIT_WATCHDOG_ENABLE)
|
|
|
|
split_watchdog_task();
|
|
|
|
#endif
|
|
|
|
|
Refactor rgblight_reconfig.h (#7773)
* Moved contents of rgblight_reconfig.h to rgblight_post_config.h.
In #3582, rgblight_reconfig.h had to be newly created. Now, the build system of qmk_firmware has a post_cofig feature, so that what was done in rgblight_reconfig.h can now be realized in rgblight_post_config.h.
**This commit does not change the build result.**
Testing script
```shell
# build on master
git checkout master
echo master > /tmp/master_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/master_md5.txt
# build on refactor_rgblight_reconfig.h
git checkout refactor_rgblight_reconfig.h
echo refactor_rgblight_reconfig.h > /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = no
make HELIX=verbose helix/rev2:default:clean
make HELIX=verbose helix/rev2:default
md5 helix_rev2_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, with animations
make HELIX=verbose helix/rev2/back:default:clean
make HELIX=verbose helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
# RGBLIGHT_ENABLE = yes, without animations
make HELIX=verbose,no_ani helix/rev2/back:default:clean
make HELIX=verbose,no_ani helix/rev2/back:default
md5 helix_rev2_back_default.hex >> /tmp/branch_md5.txt
diff -u /tmp/master_md5.txt /tmp/branch_md5.txt
```
Test result:
```
--- /tmp/master_md5.txt 2020-01-03 15:42:22.000000000 +0900
+++ /tmp/branch_md5.txt 2020-01-03 15:42:42.000000000 +0900
@@ -1,4 +1,4 @@
-master
+refactor_rgblight_reconfig.h
MD5 (helix_rev2_default.hex) = f360032edd522448366d471d8f4f8181
MD5 (helix_rev2_back_default.hex) = 0c663acc6cccc44476b3b969ad22a48f
MD5 (helix_rev2_back_default.hex) = e66b1195ff6d38e6e22c975b8ae42fd3
```
* Expressions that are too long are difficult to read, so wrap them.
* Edit the expression again
* remove `defined(RGBLIGHT_ANIMATIONS)` in `tmk_core/common/*/suspend.c`, `tmk_core/protocol/*/main.c`
move contents of rgblight_reconfig.h to rgblight.h.
The following changes were made to rgblight.h.
```diff
+#ifdef RGBLIGHT_USE_TIMER
void rgblight_task(void);
void rgblight_timer_init(void);
void rgblight_timer_enable(void);
void rgblight_timer_disable(void);
void rgblight_timer_toggle(void);
+#else
+#define rgblight_task()
+#define rgblight_timer_init()
+#define rgblight_timer_enable()
+#define rgblight_timer_disable()
+#define rgblight_timer_toggle()
+#endif
```
The following changes were made to tmk_core/common/avr/suspend.c, tmk_core/common/chibios/suspend.c, tmk_core/protocol/chibios/main.c, tmk_core/protocol/lufa/lufa.c, tmk_core/protocol/vusb/main.c.
```diff
-# ifdef RGBLIGHT_ANIMATIONS
rgblight_timer_enable();
-# endif
```
```diff
-#if defined(RGBLIGHT_ANIMATIONS) && defined(RGBLIGHT_ENABLE)
+#if defined(RGBLIGHT_ENABLE)
rgblight_task();
#endif
```
* remove 'defined(RGBLIGHT_ANIMATIONS)' in tmk_core/common/keyboard.c
Co-authored-by: Joel Challis <git@zvecr.com>
2020-03-10 09:46:03 +01:00
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
2020-01-19 01:59:09 +01:00
|
|
|
rgblight_task();
|
|
|
|
#endif
|
|
|
|
|
2021-03-28 08:59:44 +02:00
|
|
|
#ifdef LED_MATRIX_ENABLE
|
|
|
|
led_matrix_task();
|
|
|
|
#endif
|
2021-02-16 01:30:33 +01:00
|
|
|
#ifdef RGB_MATRIX_ENABLE
|
|
|
|
rgb_matrix_task();
|
|
|
|
#endif
|
|
|
|
|
2020-01-19 01:59:09 +01:00
|
|
|
#if defined(BACKLIGHT_ENABLE)
|
|
|
|
# if defined(BACKLIGHT_PIN) || defined(BACKLIGHT_PINS)
|
|
|
|
backlight_task();
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2020-05-02 23:44:36 +02:00
|
|
|
#ifdef ENCODER_ENABLE
|
2023-03-31 03:27:39 +02:00
|
|
|
if (encoder_read()) {
|
2022-08-06 12:51:13 +02:00
|
|
|
last_encoder_activity_trigger();
|
2023-03-31 03:27:39 +02:00
|
|
|
activity_has_occurred = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
if (pointing_device_task()) {
|
|
|
|
last_pointing_device_activity_trigger();
|
|
|
|
activity_has_occurred = true;
|
2022-08-06 12:51:13 +02:00
|
|
|
}
|
2020-05-02 23:44:36 +02:00
|
|
|
#endif
|
|
|
|
|
2021-08-24 08:28:26 +02:00
|
|
|
#ifdef OLED_ENABLE
|
2019-05-07 00:06:43 +02:00
|
|
|
oled_task();
|
2021-09-09 03:34:34 +02:00
|
|
|
# if OLED_TIMEOUT > 0
|
2021-01-21 12:24:07 +01:00
|
|
|
// Wake up oled if user is using those fabulous keys or spinning those encoders!
|
2023-03-31 03:27:39 +02:00
|
|
|
if (activity_has_occurred) oled_on();
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2019-05-07 00:06:43 +02:00
|
|
|
#endif
|
|
|
|
|
2021-06-10 09:16:09 +02:00
|
|
|
#ifdef ST7565_ENABLE
|
|
|
|
st7565_task();
|
2021-09-09 03:34:49 +02:00
|
|
|
# if ST7565_TIMEOUT > 0
|
2021-06-10 09:16:09 +02:00
|
|
|
// Wake up display if user is using those fabulous keys or spinning those encoders!
|
2023-03-31 03:27:39 +02:00
|
|
|
if (activity_has_occurred) st7565_on();
|
2021-06-10 09:16:09 +02:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef MOUSEKEY_ENABLE
|
2016-07-04 17:45:58 +02:00
|
|
|
// mousekey repeat & acceleration
|
2015-04-09 18:32:04 +02:00
|
|
|
mousekey_task();
|
|
|
|
#endif
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2015-04-09 18:32:04 +02:00
|
|
|
#ifdef PS2_MOUSE_ENABLE
|
|
|
|
ps2_mouse_task();
|
|
|
|
#endif
|
2016-07-04 17:45:58 +02:00
|
|
|
|
2018-02-08 21:07:46 +01:00
|
|
|
#ifdef MIDI_ENABLE
|
|
|
|
midi_task();
|
|
|
|
#endif
|
|
|
|
|
2020-07-25 14:01:15 +02:00
|
|
|
#ifdef JOYSTICK_ENABLE
|
|
|
|
joystick_task();
|
|
|
|
#endif
|
|
|
|
|
2022-09-29 19:38:09 +02:00
|
|
|
#ifdef BLUETOOTH_ENABLE
|
|
|
|
bluetooth_task();
|
2022-09-07 20:59:24 +02:00
|
|
|
#endif
|
|
|
|
|
2023-09-25 04:23:31 +02:00
|
|
|
#ifdef HAPTIC_ENABLE
|
|
|
|
haptic_task();
|
|
|
|
#endif
|
|
|
|
|
2022-01-09 04:50:44 +01:00
|
|
|
led_task();
|
2015-04-09 18:32:04 +02:00
|
|
|
}
|