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.

215 lines
6.5 KiB

  1. #include <avr/sfr_defs.h>
  2. #include <avr/timer_avr.h>
  3. #include <avr/wdt.h>
  4. #include "lfk87.h"
  5. #include "keymap.h"
  6. #include "issi.h"
  7. #include "TWIlib.h"
  8. #include "lighting.h"
  9. #include "debug.h"
  10. #include "quantum.h"
  11. uint16_t click_hz = CLICK_HZ;
  12. uint16_t click_time = CLICK_MS;
  13. uint8_t click_toggle = CLICK_ENABLED;
  14. void matrix_init_kb(void)
  15. {
  16. // put your keyboard start-up code here
  17. // runs once when the firmware starts up
  18. matrix_init_user();
  19. set_rgb(31, 0x00, 0x00, 0x00); // Caps lock
  20. set_rgb(32, 0xFF, 0x00, 0x00); // Layer indicator, start red
  21. #ifndef AUDIO_ENABLE
  22. // If we're not using the audio pin, drive it low
  23. sbi(DDRC, 6);
  24. cbi(PORTC, 6);
  25. #endif
  26. #ifdef ISSI_ENABLE
  27. issi_init();
  28. #endif
  29. #ifdef WATCHDOG_ENABLE
  30. // This is done after turning the layer LED red, if we're caught in a loop
  31. // we should get a flashing red light
  32. wdt_enable(WDTO_500MS);
  33. #endif
  34. }
  35. void matrix_scan_kb(void)
  36. {
  37. #ifdef WATCHDOG_ENABLE
  38. wdt_reset();
  39. #endif
  40. #ifdef ISSI_ENABLE
  41. // switch/underglow lighting update
  42. static uint32_t issi_device = 0;
  43. static uint32_t twi_last_ready = 0;
  44. if(twi_last_ready > 1000){
  45. // Its been way too long since the last ISSI update, reset the I2C bus and start again
  46. twi_last_ready = 0;
  47. TWIInit();
  48. force_issi_refresh();
  49. }
  50. if(isTWIReady()){
  51. twi_last_ready = 0;
  52. // If the i2c bus is available, kick off the issi update, alternate between devices
  53. update_issi(issi_device, issi_device);
  54. if(issi_device){
  55. issi_device = 0;
  56. }else{
  57. issi_device = 3;
  58. }
  59. }else{
  60. twi_last_ready++;
  61. }
  62. #endif
  63. // Update layer indicator LED
  64. //
  65. // Not sure how else to reliably do this... TMK has the 'hook_layer_change'
  66. // but can't find QMK equiv
  67. static uint32_t layer_indicator = -1;
  68. if(layer_indicator != layer_state){
  69. for(uint32_t i=0;; i++){
  70. // the layer_info list should end with layer 0xFFFF
  71. // it will break this out of the loop and define the unknown layer color
  72. if((layer_info[i].layer == (layer_state & layer_info[i].mask)) || (layer_info[i].layer == 0xFFFFFFFF)){
  73. set_rgb(32, layer_info[i].color.red, layer_info[i].color.green, layer_info[i].color.blue);
  74. layer_indicator = layer_state;
  75. break;
  76. }
  77. }
  78. }
  79. matrix_scan_user();
  80. }
  81. void click(uint16_t freq, uint16_t duration){
  82. #ifdef AUDIO_ENABLE
  83. if(freq >= 100 && freq <= 20000 && duration < 100){
  84. play_note(freq, 10);
  85. for (uint16_t i = 0; i < duration; i++){
  86. _delay_ms(1);
  87. }
  88. stop_all_notes();
  89. }
  90. #endif
  91. }
  92. bool process_record_kb(uint16_t keycode, keyrecord_t* record)
  93. {
  94. if (click_toggle && record->event.pressed){
  95. click(click_hz, click_time);
  96. }
  97. if (keycode == RESET) {
  98. reset_keyboard_kb();
  99. } else {
  100. }
  101. return process_record_user(keycode, record);
  102. }
  103. void action_function(keyrecord_t *event, uint8_t id, uint8_t opt)
  104. {
  105. #ifdef AUDIO_ENABLE
  106. int8_t sign = 1;
  107. #endif
  108. if(id == LFK_ESC_TILDE){
  109. // Send ~ on shift-esc
  110. void (*method)(uint8_t) = (event->event.pressed) ? &add_key : &del_key;
  111. uint8_t shifted = get_mods() & (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT));
  112. method(shifted ? KC_GRAVE : KC_ESCAPE);
  113. send_keyboard_report();
  114. }else if(event->event.pressed){
  115. switch(id){
  116. case LFK_SET_DEFAULT_LAYER:
  117. // set/save the current base layer to eeprom, falls through to LFK_CLEAR
  118. eeconfig_update_default_layer(1UL << opt);
  119. default_layer_set(1UL << opt);
  120. case LFK_CLEAR:
  121. // Go back to default layer
  122. layer_clear();
  123. break;
  124. #ifdef ISSI_ENABLE
  125. case LFK_LED_TEST:
  126. led_test();
  127. break;
  128. #endif
  129. #ifdef AUDIO_ENABLE
  130. case LFK_CLICK_FREQ_LOWER:
  131. sign = -1; // continue to next statement
  132. case LFK_CLICK_FREQ_HIGHER:
  133. click_hz += sign * 100;
  134. click(click_hz, click_time);
  135. break;
  136. case LFK_CLICK_TOGGLE:
  137. if(click_toggle){
  138. click_toggle = 0;
  139. click(4000, 100);
  140. click(1000, 100);
  141. }else{
  142. click_toggle = 1;
  143. click(1000, 100);
  144. click(4000, 100);
  145. }
  146. break;
  147. case LFK_CLICK_TIME_SHORTER:
  148. sign = -1; // continue to next statement
  149. case LFK_CLICK_TIME_LONGER:
  150. click_time += sign;
  151. click(click_hz, click_time);
  152. break;
  153. #endif
  154. }
  155. }
  156. }
  157. void reset_keyboard_kb(){
  158. #ifdef WATCHDOG_ENABLE
  159. MCUSR = 0;
  160. wdt_disable();
  161. wdt_reset();
  162. #endif
  163. set_rgb(31, 0x00, 0xFF, 0xFF);
  164. set_rgb(32, 0x00, 0xFF, 0xFF);
  165. force_issi_refresh();
  166. reset_keyboard();
  167. }
  168. void led_set_kb(uint8_t usb_led)
  169. {
  170. // Set capslock LED to Blue
  171. if (usb_led & (1 << USB_LED_CAPS_LOCK)) {
  172. set_rgb(31, 0x00, 0x00, 0x7F);
  173. }else{
  174. set_rgb(31, 0x00, 0x00, 0x00);
  175. }
  176. led_set_user(usb_led);
  177. }
  178. // Lighting info, see lighting.h for details
  179. const uint8_t switch_matrices[] = {0, 1};
  180. const uint8_t rgb_matrices[] = {6, 7};
  181. // RGB Map:
  182. // 27 29 10 9 8 7 6
  183. // 26 5
  184. // 25 4
  185. // 24 3
  186. // 23 22 21 20 14 15 11 1 2
  187. const uint8_t rgb_sequence[] = {
  188. 27, 29, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 11, 15, 14, 20, 21, 22, 23, 24, 25, 26
  189. };
  190. // Maps switch LEDs from Row/Col to ISSI matrix.
  191. // Value breakdown:
  192. // Bit | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
  193. // | | ISSI Col | ISSI Row |
  194. // / |
  195. // Device
  196. const uint8_t switch_leds[MATRIX_ROWS][MATRIX_COLS] =
  197. LAYOUT(
  198. 0x19, 0x18, 0x17, 0x16, 0x15, 0x14, 0x13, 0x12, 0x11, 0x99, 0x98, 0x97, 0x96, 0x95, 0x94, 0x93, 0x92, 0x91,
  199. 0x29, 0x28, 0x27, 0x26, 0x25, 0x24, 0x23, 0x22, 0x21, 0xA9, 0xA8, 0xA7, 0xA6, 0xA5, 0xA4, 0xA3, 0xA2, 0xA1,
  200. 0x39, 0x38, 0x37, 0x36, 0x35, 0x34, 0x33, 0x32, 0x31, 0xB9, 0xB8, 0xB7, 0xB6, 0xB5, 0xB3,
  201. 0x49, 0x48, 0x47, 0x45, 0x44, 0x43, 0x42, 0x41, 0xC9, 0xC8, 0xC7, 0xC6, 0xC5, 0xC4, 0xC2,
  202. 0x59, 0x58, 0x57, 0x56, 0x55, 0x51, 0xD6, 0xE5, 0xE4, 0xE3, 0xE2, 0xE1,
  203. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);