You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

430 lines
14 KiB

8 years ago
8 years ago
8 years ago
6 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
7 years ago
8 years ago
2021 May 29 Breaking Changes Update (#13034) * Add Per Key functionality for AutoShift (#11536) * LED Matrix: Reactive effect buffers & advanced indicators (#12588) * [Keyboard] kint36: switch to sym_eager_pk debouncing (#12626) * [Keyboard] kint2pp: reduce input latency by ≈10ms (#12625) * LED Matrix: Split (#12633) * [CI] Format code according to conventions (#12650) * feat: infinite timeout for leader key (#6580) * feat: implement leader_no_timeout logic * docs(leader_key): infinite leader timeout docs * Format code according to conventions (#12680) * Update ADC driver for STM32F1xx, STM32F3xx, STM32F4xx (#12403) * Fix default ADC_RESOLUTION for ADCv3 (and ADCv4) Recent ChibiOS update removed ADC_CFGR1_RES_10BIT from the ADCv3 headers (that macro should not have been there, because ADCv3 has CFGR instead of CFGR1). Fix the default value for ADC_RESOLUTION to use ADC_CFGR_RES_10BITS if it is defined (that name is used for ADCv3 and ADCv4). * Update ADC docs to match the actually used resolution ADC driver for ChibiOS actually uses the 10-bit resolution by default (probably to match AVR); fix the documentation accordingly. Also add both ADC_CFGR_RES_10BITS and ADC_CFGR1_RES_10BIT constants (these names differ according to the ADC implementation in the particular MCU). * Fix pinToMux() for B12 and B13 on STM32F3xx Testing on STM32F303CCT6 revealed that the ADC mux values for B12 and B13 pins were wrong. * Add support for all possible analog pins on STM32F1xx Added ADC mux values for pins A0...A7, B0, B1, C0...C5 on STM32F1xx (they are the same at least for STM32F103x8 and larger F103 devices, and also F102, F105, F107 families). Actually tested on STM32F103C8T6 (therefore pins C0...C5 were not tested). Pins F6...F10, which are present on STM32F103x[C-G] in 144-pin packages, cannot be supported at the moment, because those pins are connected only to ADC3, but the ChibiOS ADC driver for STM32F1xx supports only ADC1. * Add support for all possible analog pins on STM32F4xx Added ADC mux values for pins A0...A7, B0, B1, C0...C5 and optionally F3...F10 (if STM32_ADC_USE_ADC3 is enabled). These mux values are apparently the same for all F4xx devices, except some smaller devices may not have ADC3. Actually tested on STM32F401CCU6, STM32F401CEU6, STM32F411CEU6 (using various WeAct “Blackpill” boards); only pins A0...A7, B0, B1 were tested. Pins F3...F10 are inside `#if STM32_ADC_USE_ADC3` because some devices which don't have ADC3 also don't have the GPIOF port, therefore the code which refers to Fx pins does not compile. * Fix STM32F3xx ADC mux table in documentation The ADC driver documentation had some errors in the mux table for STM32F3xx. Fix this table to match the datasheet and the actual code (mux settings for B12 and B13 were also tested on a real STM32F303CCT6 chip). * Add STM32F1xx ADC pins to the documentation * Add STM32F4xx ADC pins to the documentation * Add initial support for tinyuf2 bootloader (when hosted on F411 blackpill) (#12600) * Add support for jumping to tinyuf2 bootloader. Adds blackpill UF2 example. * Update flashing.md * Update chconf.h * Update config.h * Update halconf.h * Update mcuconf.h * eeprom driver: Refactor where eeprom driver initialisation (and EEPROM emulation initialisation) occurs to make it non-target-specific. (#12671) * Add support for MCU = STM32F446 (#12619) * Add support for MCU = STM32F446 * Update platforms/chibios/GENERIC_STM32_F446XE/configs/config.h * Restore mcuconf.h to the one used by RT-STM32F446RE-NUCLEO64 * stm32f446: update mcuconf.h and board.h for 16MHz operation, with USB enabled, and other peripherals disabled. * Format code according to conventions (#12682) * Format code according to conventions (#12687) * Add STM32L433 and L443 support (#12063) * initial L433 commit * change to XC * fix L433 * disable all peripherals * update system and peripheral clocks * 433 change * use its own board files * revert its own board files * l433 specific change * fix stm32l432xx define * remove duplicate #define * fix bootloader jump * move to L443xx and add i2c2, spi2, usart3 to mcuconf.h * move to L443 * move to L443 * fix sdmmc in mcuconf.h * include STM32L443 * add L443 * Include L443 in compatible microcontrollers * Include L443 in compatible microcontrollers * Update config bootloader jump description * Update ChibiOS define reasoning * Update quantum/mcu_selection.mk * fix git conflict * Updated Function96 with V2 files and removed chconf.h and halconf.h (#12613) * Fix bad PR merge for #6580. (#12721) * Change RGB/LED Matrix to use a simple define for USB suspend (#12697) * [CI] Format code according to conventions (#12731) * Fixing transport's led/rgb matrix suspend state logic (#12770) * [CI] Format code according to conventions (#12772) * Fix comment parsing (#12750) * Added OLED fade out support (#12086) * fix some references to bin/qmk that slipped in (#12832) * Resolve a number of warnings in `qmk generate-api` (#12833) * New command: qmk console (#12828) * stash poc * stash * tidy up implementation * Tidy up slightly for review * Tidy up slightly for review * Bodge environment to make tests pass * Refactor away from asyncio due to windows issues * Filter devices * align vid/pid printing * Add hidapi to the installers * start preparing for multiple hid_listeners * udev rules for hid_listen * refactor to move closer to end state * very basic implementation of the threaded model * refactor how vid/pid/index are supplied and parsed * windows improvements * read the report directly when usage page isn't available * add per-device colors, the choice to show names or numbers, and refactor * add timestamps * Add support for showing bootloaders * tweak the color for bootloaders * Align bootloader disconnect with connect color * add support for showing all bootloaders * fix the pyusb check * tweaks * fix exception * hide a stack trace behind -v * add --no-bootloaders option * add documentation for qmk console * Apply suggestions from code review * pyformat * clean up and flesh out KNOWN_BOOTLOADERS * Remove pointless SERIAL_LINK_ENABLE rules (#12846) * Make Swap Hands use PROGMEM (#12284) This converts the array that the Swap Hands feature uses to use PROGMEM, and to read from that array, as such. Since this array never changes at runtime, there is no reason to keep it in memory. Especially for AVR boards, as memory is a precious resource. * Fix another bin/qmk reference (#12856) * [Keymap] Turn OLED off on suspend in soundmonster keymap (#10419) * Fixup build errors on `develop` branch. (#12723) * LED Matrix: Effects! (#12651) * Fix syntax error when compiling for ARM (#12866) * Remove KEYMAP and LAYOUT_kc (#12160) * alias KEYMAP to LAYOUT * remove KEYMAP and LAYOUT_kc * Add setup, clone, and env to the list of commands we allow even with broken modules (#12868) * Rename `point_t` -> `led_point_t` (#12864) * [Keyboard] updated a vendor name / fixed minor keymap issues (#12881) * Add missing LED Matrix suspend code to suspend.c (#12878) * LED Matrix: Documentation (#12685) * Deprecate `send_unicode_hex_string()` (#12602) * Fix spelling mistake regarding LED Matrix in split_common. (#12888) * [Keymap] Fix QWERTY/DVORAK status output for kzar keymap (#12895) * Use milc.subcommand.config instead of qmk.cli.config (#12915) * Use milc.subcommand.config instead * pyformat * remove the config test * Add function to allow repeated blinking of one layer (#12237) * Implement function rgblight_blink_layer_repeat to allow repeated blinking of one layer at a time * Update doc * Rework rgblight blinking according to requested change * optimize storage * Fixup housekeeping from being invoked twice per loop. (#12933) * matrix: wait for row signal to go HIGH for every row (#12945) I noticed this discrepancy (last row of the matrix treated differently than the others) when optimizing the input latency of my keyboard controller, see also https://michael.stapelberg.ch/posts/2021-05-08-keyboard-input-latency-qmk-kinesis/ Before this commit, when tuning the delays I noticed ghost key presses when pressing the F2 key, which is on the last row of the keyboard matrix: the dead_grave key, which is on the first row of the keyboard matrix, would be incorrectly detected as pressed. After this commit, all keyboard matrix rows are interpreted correctly. I suspect that my setup is more susceptible to this nuance than others because I use GPIO_INPUT_PIN_DELAY=0 and hence don’t have another delay that might mask the problem. * ensure we do not conflict with existing keymap aliases (#12976) * Add support for up to 4 IS31FL3733 drivers (#12342) * Convert Encoder callbacks to be boolean functions (#12805) * [Keyboard] Fix Terrazzo build failure (#12977) * Do not hard set config in CPTC files (#11864) * [Keyboard] Corne - Remove legacy revision support (#12226) * [Keymap] Update to Drashna keymap and user code (based on develop) (#12936) * Add Full-duplex serial driver for ARM boards (#9842) * Document LED_MATRIX_FRAMEBUFFER_EFFECTS (#12987) * Backlight: add defines for default level and breathing state (#12560) * Add dire message about LUFA mass storage bootloader (#13014) * [Keyboard] Remove redundant legacy and common headers for crkbd (#13023) Was causing compiler errors on some systems. * Fix keyboards/keymaps for boolean encoder callback changes (#12985) * `backlight.c`: include `eeprom.h` (#13024) * Add changelog for 2021-05-29 Breaking Changes merge (#12939) * Add ChangeLog for 2021-05-29 Breaking Changes Merge: initial version * Add recent develop changes * Sort recent develop changes * Remove sections for ChibiOS changes per tzarc No ChibiOS changes this round. * Add and sort recent develop changes * add notes about keyboard moves/deletions * import changelog for PR 12172 Documents the change to BOOTMAGIC_ENABLE. * update section headings * re-sort changelog * add additional note regarding Bootmagic changes * remove changelog timestamp * update dates in main Breaking Changes docs * fix broken section anchors in previous changelogs * add link to backlight/eeprom patch to changelog * highlight some more changes * link PRs from section headers * Restore standard readme * run: qmk cformat --core-only
3 years ago
6 years ago
6 years ago
  1. /*
  2. Copyright 2012 Jun Wako <wakojun@gmail.com>
  3. Copyright 2013 Oleg Kostyuk <cub.uanic@gmail.com>
  4. Copyright 2015 ZSA Technology Labs Inc (@zsa)
  5. Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation, either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include "ergodox_ez.h"
  18. extern inline void ergodox_board_led_on(void);
  19. extern inline void ergodox_right_led_1_on(void);
  20. extern inline void ergodox_right_led_2_on(void);
  21. extern inline void ergodox_right_led_3_on(void);
  22. extern inline void ergodox_right_led_on(uint8_t led);
  23. extern inline void ergodox_board_led_off(void);
  24. extern inline void ergodox_right_led_1_off(void);
  25. extern inline void ergodox_right_led_2_off(void);
  26. extern inline void ergodox_right_led_3_off(void);
  27. extern inline void ergodox_right_led_off(uint8_t led);
  28. extern inline void ergodox_led_all_on(void);
  29. extern inline void ergodox_led_all_off(void);
  30. extern inline void ergodox_right_led_1_set(uint8_t n);
  31. extern inline void ergodox_right_led_2_set(uint8_t n);
  32. extern inline void ergodox_right_led_3_set(uint8_t n);
  33. extern inline void ergodox_right_led_set(uint8_t led, uint8_t n);
  34. extern inline void ergodox_led_all_set(uint8_t n);
  35. keyboard_config_t keyboard_config;
  36. bool i2c_initialized = 0;
  37. i2c_status_t mcp23018_status = 0x20;
  38. void matrix_init_kb(void) {
  39. // keyboard LEDs (see "PWM on ports OC1(A|B|C)" in "teensy-2-0.md")
  40. TCCR1A = 0b10101001; // set and configure fast PWM
  41. TCCR1B = 0b00001001; // set and configure fast PWM
  42. // (tied to Vcc for hardware convenience)
  43. DDRB &= ~(1 << 4); // set B(4) as input
  44. PORTB &= ~(1 << 4); // set B(4) internal pull-up disabled
  45. // unused pins - C7, D4, D5, D7, E6
  46. // set as input with internal pull-up enabled
  47. DDRC &= ~(1 << 7);
  48. DDRD &= ~(1 << 5 | 1 << 4);
  49. DDRE &= ~(1 << 6);
  50. PORTC |= (1 << 7);
  51. PORTD |= (1 << 5 | 1 << 4);
  52. PORTE |= (1 << 6);
  53. keyboard_config.raw = eeconfig_read_kb();
  54. ergodox_led_all_set((uint8_t)keyboard_config.led_level * 255 / 4);
  55. #ifdef RGB_MATRIX_ENABLE
  56. if (keyboard_config.rgb_matrix_enable) {
  57. rgb_matrix_set_flags(LED_FLAG_ALL);
  58. } else {
  59. rgb_matrix_set_flags(LED_FLAG_NONE);
  60. }
  61. #endif
  62. ergodox_blink_all_leds();
  63. matrix_init_user();
  64. }
  65. void ergodox_blink_all_leds(void) {
  66. ergodox_led_all_off();
  67. ergodox_led_all_set(LED_BRIGHTNESS_DEFAULT);
  68. ergodox_right_led_1_on();
  69. _delay_ms(50);
  70. ergodox_right_led_2_on();
  71. _delay_ms(50);
  72. ergodox_right_led_3_on();
  73. _delay_ms(50);
  74. #ifdef LEFT_LEDS
  75. ergodox_left_led_1_on();
  76. _delay_ms(50);
  77. if (!mcp23018_status) {
  78. mcp23018_status = ergodox_left_leds_update();
  79. }
  80. ergodox_left_led_2_on();
  81. _delay_ms(50);
  82. if (!mcp23018_status) {
  83. mcp23018_status = ergodox_left_leds_update();
  84. }
  85. ergodox_left_led_3_on();
  86. _delay_ms(50);
  87. if (!mcp23018_status) {
  88. mcp23018_status = ergodox_left_leds_update();
  89. }
  90. #endif
  91. ergodox_right_led_1_off();
  92. _delay_ms(50);
  93. ergodox_right_led_2_off();
  94. _delay_ms(50);
  95. ergodox_right_led_3_off();
  96. #ifdef LEFT_LEDS
  97. _delay_ms(50);
  98. ergodox_left_led_1_off();
  99. if (!mcp23018_status) {
  100. mcp23018_status = ergodox_left_leds_update();
  101. }
  102. _delay_ms(50);
  103. ergodox_left_led_2_off();
  104. if (!mcp23018_status) {
  105. mcp23018_status = ergodox_left_leds_update();
  106. }
  107. _delay_ms(50);
  108. ergodox_left_led_3_off();
  109. if (!mcp23018_status) {
  110. mcp23018_status = ergodox_left_leds_update();
  111. }
  112. #endif
  113. // ergodox_led_all_on();
  114. //_delay_ms(333);
  115. ergodox_led_all_off();
  116. }
  117. uint8_t init_mcp23018(void) {
  118. mcp23018_status = 0x20;
  119. // I2C subsystem
  120. // uint8_t sreg_prev;
  121. // sreg_prev=SREG;
  122. // cli();
  123. if (i2c_initialized == 0) {
  124. i2c_init(); // on pins D(1,0)
  125. i2c_initialized = true;
  126. _delay_ms(1000);
  127. }
  128. // i2c_init(); // on pins D(1,0)
  129. // _delay_ms(1000);
  130. // set pin direction
  131. // - unused : input : 1
  132. // - input : input : 1
  133. // - driving : output : 0
  134. uint8_t data[] = {0b00000000, 0b00111111};
  135. mcp23018_status = i2c_write_register(I2C_ADDR, IODIRA, data, 2, ERGODOX_EZ_I2C_TIMEOUT);
  136. if (!mcp23018_status) {
  137. // set pull-up
  138. // - unused : on : 1
  139. // - input : on : 1
  140. // - driving : off : 0
  141. mcp23018_status = i2c_write_register(I2C_ADDR, GPPUA, data, 2, ERGODOX_EZ_I2C_TIMEOUT);
  142. }
  143. #ifdef LEFT_LEDS
  144. if (!mcp23018_status) mcp23018_status = ergodox_left_leds_update();
  145. #endif // LEFT_LEDS
  146. // SREG=sreg_prev;
  147. return mcp23018_status;
  148. }
  149. #ifdef LEFT_LEDS
  150. uint8_t ergodox_left_leds_update(void) {
  151. if (mcp23018_status) { // if there was an error
  152. return mcp23018_status;
  153. }
  154. # define LEFT_LED_1_SHIFT 7 // in MCP23018 port B
  155. # define LEFT_LED_2_SHIFT 6 // in MCP23018 port B
  156. # define LEFT_LED_3_SHIFT 7 // in MCP23018 port A
  157. // set logical value (doesn't matter on inputs)
  158. // - unused : hi-Z : 1
  159. // - input : hi-Z : 1
  160. // - driving : hi-Z : 1
  161. uint8_t data[2];
  162. data[0] = 0b11111111 & ~(ergodox_left_led_3 << LEFT_LED_3_SHIFT);
  163. data[1] = 0b11111111 & ~(ergodox_left_led_2 << LEFT_LED_2_SHIFT) & ~(ergodox_left_led_1 << LEFT_LED_1_SHIFT);
  164. mcp23018_status = i2c_write_register(I2C_ADDR, OLATA, data, 2, ERGODOX_EZ_I2C_TIMEOUT);
  165. return mcp23018_status;
  166. }
  167. #endif
  168. #ifdef SWAP_HANDS_ENABLE
  169. __attribute__((weak))
  170. // swap-hands action needs a matrix to define the swap
  171. const keypos_t PROGMEM hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {
  172. /* Left hand, matrix positions */
  173. {{0, 13}, {1, 13}, {2, 13}, {3, 13}, {4, 13}, {5, 13}},
  174. {{0, 12}, {1, 12}, {2, 12}, {3, 12}, {4, 12}, {5, 12}},
  175. {{0, 11}, {1, 11}, {2, 11}, {3, 11}, {4, 11}, {5, 11}},
  176. {{0, 10}, {1, 10}, {2, 10}, {3, 10}, {4, 10}, {5, 10}},
  177. {{0, 9}, {1, 9}, {2, 9}, {3, 9}, {4, 9}, {5, 9}},
  178. {{0, 8}, {1, 8}, {2, 8}, {3, 8}, {4, 8}, {5, 8}},
  179. {{0, 7}, {1, 7}, {2, 7}, {3, 7}, {4, 7}, {5, 7}},
  180. /* Right hand, matrix positions */
  181. {{0, 6}, {1, 6}, {2, 6}, {3, 6}, {4, 6}, {5, 6}},
  182. {{0, 5}, {1, 5}, {2, 5}, {3, 5}, {4, 5}, {5, 5}},
  183. {{0, 4}, {1, 4}, {2, 4}, {3, 4}, {4, 4}, {5, 4}},
  184. {{0, 3}, {1, 3}, {2, 3}, {3, 3}, {4, 3}, {5, 3}},
  185. {{0, 2}, {1, 2}, {2, 2}, {3, 2}, {4, 2}, {5, 2}},
  186. {{0, 1}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}},
  187. {{0, 0}, {1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}},
  188. };
  189. #endif
  190. #ifdef RGB_MATRIX_ENABLE
  191. // clang-format off
  192. const is31fl3731_led_t PROGMEM g_is31fl3731_leds[IS31FL3731_LED_COUNT] = {
  193. /* driver
  194. * | R location
  195. * | | G location
  196. * | | | B location
  197. * | | | | */
  198. {0, C3_1, C2_1, C4_1}, // LED1 on right
  199. {0, C6_1, C5_1, C7_1}, // LED2
  200. {0, C4_2, C3_2, C5_2}, // LED3
  201. {0, C7_2, C6_2, C8_2}, // LED4
  202. {0, C2_3, C1_3, C3_3}, // LED5
  203. {0, C5_3, C4_3, C6_3}, // LED6
  204. {0, C8_3, C7_3, C9_3}, // LED7
  205. {0, C2_4, C1_4, C3_4}, // LED8
  206. {0, C6_4, C5_4, C7_4}, // LED9
  207. {0, C2_5, C1_5, C3_5}, // LED10
  208. {0, C7_5, C6_5, C8_5}, // LED11
  209. {0, C2_6, C1_6, C3_6}, // LED12
  210. {0, C5_6, C4_6, C6_6}, // LED13
  211. {0, C8_6, C7_6, C9_6}, // LED14
  212. {0, C2_7, C1_7, C3_7}, // LED15
  213. {0, C5_7, C4_7, C6_7}, // LED16
  214. {0, C2_8, C1_8, C3_8}, // LED17
  215. {0, C5_8, C4_8, C6_8}, // LED18
  216. {0, C3_9, C2_9, C4_9}, // LED19
  217. {0, C6_9, C5_9, C7_9}, // LED20
  218. {0, C4_10, C3_10, C5_10}, // LED21
  219. {0, C7_10, C6_10, C8_10}, // LED22
  220. {0, C2_11, C1_11, C3_11}, // LED23
  221. {0, C5_11, C4_11, C6_11}, // LED24
  222. {1, C3_1, C2_1, C4_1}, // LED1 on left
  223. {1, C6_1, C5_1, C7_1}, // LED2
  224. {1, C4_2, C3_2, C5_2}, // LED3
  225. {1, C7_2, C6_2, C8_2}, // LED4
  226. {1, C2_3, C1_3, C3_3}, // LED5
  227. {1, C5_3, C4_3, C6_3}, // LED6
  228. {1, C8_3, C7_3, C9_3}, // LED7
  229. {1, C2_4, C1_4, C3_4}, // LED8
  230. {1, C6_4, C5_4, C7_4}, // LED9
  231. {1, C2_5, C1_5, C3_5}, // LED10
  232. {1, C7_5, C6_5, C8_5}, // LED11
  233. {1, C2_6, C1_6, C3_6}, // LED12
  234. {1, C5_6, C4_6, C6_6}, // LED13
  235. {1, C8_6, C7_6, C9_6}, // LED14
  236. {1, C2_7, C1_7, C3_7}, // LED15
  237. {1, C5_7, C4_7, C6_7}, // LED16
  238. {1, C2_8, C1_8, C3_8}, // LED17
  239. {1, C5_8, C4_8, C6_8}, // LED18
  240. {1, C3_9, C2_9, C4_9}, // LED19
  241. {1, C6_9, C5_9, C7_9}, // LED20
  242. {1, C4_10, C3_10, C5_10}, // LED21
  243. {1, C7_10, C6_10, C8_10}, // LED22
  244. {1, C2_11, C1_11, C3_11}, // LED23
  245. {1, C5_11, C4_11, C6_11} // LED24
  246. };
  247. led_config_t g_led_config = { {
  248. { NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED },
  249. { 28, 33, 38, 43, 47, NO_LED },
  250. { 27, 32, 37, 42, 46, NO_LED },
  251. { 26, 31, 36, 41, 45, NO_LED },
  252. { 25, 30, 35, 40, 44, NO_LED },
  253. { 24, 29, 34, 39, NO_LED, NO_LED },
  254. { NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED },
  255. { NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED },
  256. { 0, 5, 10, 15, NO_LED, NO_LED },
  257. { 1, 6, 11, 16, 20, NO_LED },
  258. { 2, 7, 12, 17, 21, NO_LED },
  259. { 3, 8, 13, 18, 22, NO_LED },
  260. { 4, 9, 14, 19, 23, NO_LED },
  261. { NO_LED, NO_LED, NO_LED, NO_LED, NO_LED, NO_LED }
  262. }, {
  263. { 137, 0 }, { 154, 0 }, { 172, 0 }, { 189, 0 }, { 206, 0 }, { 137, 12 },
  264. { 154, 12 }, { 172, 12 }, { 189, 12 }, { 206, 12 }, { 137, 25 }, { 154, 25 },
  265. { 172, 25 }, { 189, 25 }, { 206, 25 }, { 137, 38 }, { 154, 38 }, { 172, 38 },
  266. { 189, 38 }, { 206, 38 }, { 154, 51 }, { 172, 51 }, { 189, 51 }, { 206, 51 },
  267. { 86, 0 }, { 68, 0 }, { 51, 0 }, { 34, 0 }, { 17, 0 }, { 86, 12 },
  268. { 68, 12 }, { 51, 12 }, { 34, 12 }, { 17, 12 }, { 86, 25 }, { 68, 25 },
  269. { 51, 25 }, { 34, 25 }, { 17, 25 }, { 86, 38 }, { 68, 38 }, { 51, 38 },
  270. { 34, 38 }, { 17, 38 }, { 68, 51 }, { 51, 51 }, { 34, 51 }, { 17, 51 }
  271. }, {
  272. 4, 4, 4, 4, 4, 4,
  273. 4, 4, 4, 4, 4, 4,
  274. 4, 4, 4, 4, 4, 4,
  275. 4, 4, 1, 1, 1, 1,
  276. 4, 4, 4, 4, 4, 4,
  277. 4, 4, 4, 4, 4, 4,
  278. 4, 4, 4, 4, 4, 4,
  279. 4, 4, 1, 1, 1, 1
  280. } };
  281. // clang-format on
  282. # ifdef ORYX_CONFIGURATOR
  283. void keyboard_post_init_kb(void) {
  284. rgb_matrix_enable_noeeprom();
  285. keyboard_post_init_user();
  286. }
  287. # endif
  288. #endif
  289. #ifdef ORYX_CONFIGURATOR
  290. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  291. switch (keycode) {
  292. case LED_LEVEL:
  293. if (record->event.pressed) {
  294. keyboard_config.led_level++;
  295. if (keyboard_config.led_level > 4) {
  296. keyboard_config.led_level = 0;
  297. }
  298. ergodox_led_all_set((uint8_t)keyboard_config.led_level * 255 / 4);
  299. eeconfig_update_kb(keyboard_config.raw);
  300. layer_state_set_kb(layer_state);
  301. }
  302. break;
  303. # ifdef RGB_MATRIX_ENABLE
  304. case TOGGLE_LAYER_COLOR:
  305. if (record->event.pressed) {
  306. keyboard_config.disable_layer_led ^= 1;
  307. if (keyboard_config.disable_layer_led) rgb_matrix_set_color_all(0, 0, 0);
  308. eeconfig_update_kb(keyboard_config.raw);
  309. }
  310. break;
  311. case RGB_TOG:
  312. if (record->event.pressed) {
  313. switch (rgb_matrix_get_flags()) {
  314. case LED_FLAG_ALL: {
  315. rgb_matrix_set_flags(LED_FLAG_NONE);
  316. keyboard_config.rgb_matrix_enable = false;
  317. rgb_matrix_set_color_all(0, 0, 0);
  318. } break;
  319. default: {
  320. rgb_matrix_set_flags(LED_FLAG_ALL);
  321. keyboard_config.rgb_matrix_enable = true;
  322. } break;
  323. }
  324. eeconfig_update_kb(keyboard_config.raw);
  325. }
  326. return false;
  327. # endif
  328. }
  329. return process_record_user(keycode, record);
  330. }
  331. #endif
  332. void eeconfig_init_kb(void) { // EEPROM is getting reset!
  333. keyboard_config.raw = 0;
  334. keyboard_config.led_level = 4;
  335. keyboard_config.rgb_matrix_enable = true;
  336. eeconfig_update_kb(keyboard_config.raw);
  337. eeconfig_init_user();
  338. }
  339. #ifdef ORYX_ENABLE
  340. static uint16_t loops = 0;
  341. static bool is_on = false;
  342. #endif
  343. #ifdef DYNAMIC_MACRO_ENABLE
  344. static bool is_dynamic_recording = false;
  345. static uint16_t dynamic_loop_timer;
  346. void dynamic_macro_record_start_user(int8_t direction) {
  347. is_dynamic_recording = true;
  348. dynamic_loop_timer = timer_read();
  349. ergodox_right_led_1_on();
  350. }
  351. void dynamic_macro_record_end_user(int8_t direction) {
  352. is_dynamic_recording = false;
  353. layer_state_set_user(layer_state);
  354. }
  355. #endif
  356. void matrix_scan_kb(void) {
  357. #ifdef DYNAMIC_MACRO_ENABLE
  358. if (is_dynamic_recording) {
  359. ergodox_right_led_1_off();
  360. // if (timer_elapsed(dynamic_loop_timer) > 5)
  361. {
  362. static uint8_t counter;
  363. counter++;
  364. if (counter > 100) ergodox_right_led_1_on();
  365. dynamic_loop_timer = timer_read();
  366. }
  367. }
  368. #endif
  369. #ifdef CAPS_LOCK_STATUS
  370. led_t led_state = host_keyboard_led_state();
  371. if(led_state.caps_lock) {
  372. ergodox_right_led_3_on();
  373. }
  374. else {
  375. uint8_t layer = get_highest_layer(layer_state);
  376. if(layer != 1) {
  377. ergodox_right_led_3_off();
  378. }
  379. }
  380. #endif
  381. matrix_scan_user();
  382. }