2020-02-05 03:41:19 +01:00
|
|
|
#include "lfkpad.h"
|
|
|
|
|
|
|
|
#include "quantum.h"
|
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
#include <avr/timer_avr.h>
|
|
|
|
#include <avr/wdt.h>
|
|
|
|
#include "issi.h"
|
|
|
|
#include "TWIlib.h"
|
|
|
|
#include "lighting.h"
|
|
|
|
|
|
|
|
uint16_t click_hz = CLICK_HZ;
|
|
|
|
uint16_t click_time = CLICK_MS;
|
|
|
|
uint8_t click_toggle = CLICK_ENABLED;
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
void matrix_init_kb(void) {
|
2018-02-23 19:16:10 +01:00
|
|
|
matrix_init_user();
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifndef AUDIO_ENABLE
|
|
|
|
// If we're not using the audio pin, drive it low
|
2020-02-05 03:41:19 +01:00
|
|
|
setPinOutput(C6);
|
|
|
|
writePinLow(C6);
|
2018-02-23 19:16:10 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ISSI_ENABLE
|
|
|
|
issi_init();
|
|
|
|
#endif
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef WATCHDOG_ENABLE
|
|
|
|
// This is done after turning the layer LED red, if we're caught in a loop
|
|
|
|
// we should get a flashing red light
|
|
|
|
wdt_enable(WDTO_500MS);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
void matrix_scan_kb(void) {
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef WATCHDOG_ENABLE
|
|
|
|
wdt_reset();
|
|
|
|
#endif
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef ISSI_ENABLE
|
|
|
|
// switch/underglow lighting update
|
|
|
|
static uint32_t issi_device = 0;
|
|
|
|
static uint32_t twi_last_ready = 0;
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
if (twi_last_ready > 1000) {
|
|
|
|
// It's been way too long since the last ISSI update, reset the I2C bus and start again
|
2018-02-23 19:16:10 +01:00
|
|
|
dprintf("TWI failed to recover, TWI re-init\n");
|
|
|
|
twi_last_ready = 0;
|
|
|
|
TWIInit();
|
|
|
|
force_issi_refresh();
|
|
|
|
}
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
if (isTWIReady()) {
|
2018-02-23 19:16:10 +01:00
|
|
|
twi_last_ready = 0;
|
|
|
|
// If the i2c bus is available, kick off the issi update, alternate between devices
|
|
|
|
update_issi(issi_device, issi_device);
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
if (issi_device) {
|
2018-02-23 19:16:10 +01:00
|
|
|
issi_device = 0;
|
2020-02-05 03:41:19 +01:00
|
|
|
} else {
|
2018-02-23 19:16:10 +01:00
|
|
|
issi_device = 3;
|
|
|
|
}
|
2020-02-05 03:41:19 +01:00
|
|
|
} else {
|
2018-02-23 19:16:10 +01:00
|
|
|
twi_last_ready++;
|
|
|
|
}
|
|
|
|
#endif
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
matrix_scan_user();
|
|
|
|
}
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
void click(uint16_t freq, uint16_t duration) {
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef AUDIO_ENABLE
|
2020-02-05 03:41:19 +01:00
|
|
|
if (freq >= 100 && freq <= 20000 && duration < 100) {
|
2018-02-23 19:16:10 +01:00
|
|
|
play_note(freq, 10);
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
for (uint16_t i = 0; i < duration; i++) {
|
2018-02-23 19:16:10 +01:00
|
|
|
_delay_ms(1);
|
|
|
|
}
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
stop_all_notes();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
|
|
|
if (click_toggle && record->event.pressed) {
|
2018-02-23 19:16:10 +01:00
|
|
|
click(click_hz, click_time);
|
|
|
|
}
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
if (keycode == RESET) {
|
|
|
|
reset_keyboard_kb();
|
|
|
|
}
|
2020-02-05 03:41:19 +01:00
|
|
|
|
2018-02-23 19:16:10 +01:00
|
|
|
return process_record_user(keycode, record);
|
|
|
|
}
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
void action_function(keyrecord_t *event, uint8_t id, uint8_t opt) {
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
int8_t sign = 1;
|
|
|
|
#endif
|
2020-02-05 03:41:19 +01:00
|
|
|
|
|
|
|
if (id == LFK_ESC_TILDE) {
|
2018-02-23 19:16:10 +01:00
|
|
|
// Send ~ on shift-esc
|
|
|
|
void (*method)(uint8_t) = (event->event.pressed) ? &add_key : &del_key;
|
2020-02-05 03:41:19 +01:00
|
|
|
uint8_t shifted = get_mods() & MOD_MASK_SHIFT;
|
|
|
|
|
|
|
|
if (layer_state == 0) {
|
2018-02-23 19:16:10 +01:00
|
|
|
method(shifted ? KC_GRAVE : KC_ESCAPE);
|
2020-02-05 03:41:19 +01:00
|
|
|
} else {
|
2018-02-23 19:16:10 +01:00
|
|
|
method(shifted ? KC_ESCAPE : KC_GRAVE);
|
|
|
|
}
|
|
|
|
send_keyboard_report();
|
2020-02-05 03:41:19 +01:00
|
|
|
} else if (event->event.pressed) {
|
|
|
|
switch (id) {
|
2018-02-23 19:16:10 +01:00
|
|
|
case LFK_SET_DEFAULT_LAYER:
|
|
|
|
// set/save the current base layer to eeprom, falls through to LFK_CLEAR
|
|
|
|
eeconfig_update_default_layer(1UL << opt);
|
|
|
|
default_layer_set(1UL << opt);
|
|
|
|
case LFK_CLEAR:
|
|
|
|
// Go back to default layer
|
|
|
|
layer_clear();
|
|
|
|
break;
|
|
|
|
#ifdef AUDIO_ENABLE
|
|
|
|
case LFK_CLICK_FREQ_LOWER:
|
2020-02-05 03:41:19 +01:00
|
|
|
sign = -1; // continue to next statement
|
2018-02-23 19:16:10 +01:00
|
|
|
case LFK_CLICK_FREQ_HIGHER:
|
|
|
|
click_hz += sign * 100;
|
|
|
|
click(click_hz, click_time);
|
|
|
|
break;
|
|
|
|
case LFK_CLICK_TOGGLE:
|
2020-02-05 03:41:19 +01:00
|
|
|
if (click_toggle) {
|
2018-02-23 19:16:10 +01:00
|
|
|
click_toggle = 0;
|
|
|
|
click(4000, 100);
|
|
|
|
click(1000, 100);
|
2020-02-05 03:41:19 +01:00
|
|
|
} else {
|
2018-02-23 19:16:10 +01:00
|
|
|
click_toggle = 1;
|
|
|
|
click(1000, 100);
|
|
|
|
click(4000, 100);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case LFK_CLICK_TIME_SHORTER:
|
2020-02-05 03:41:19 +01:00
|
|
|
sign = -1; // continue to next statement
|
2018-02-23 19:16:10 +01:00
|
|
|
case LFK_CLICK_TIME_LONGER:
|
|
|
|
click_time += sign;
|
|
|
|
click(click_hz, click_time);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
void reset_keyboard_kb() {
|
2018-02-23 19:16:10 +01:00
|
|
|
#ifdef WATCHDOG_ENABLE
|
|
|
|
MCUSR = 0;
|
|
|
|
wdt_disable();
|
|
|
|
wdt_reset();
|
|
|
|
#endif
|
|
|
|
|
2020-02-05 03:41:19 +01:00
|
|
|
reset_keyboard();
|
2018-02-23 19:16:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// LFK lighting info
|
2020-02-05 03:41:19 +01:00
|
|
|
const uint8_t rgb_matrices[] = { 0, 1 };
|
2018-02-23 19:16:10 +01:00
|
|
|
const uint8_t rgb_sequence[] = {
|
|
|
|
32, 1, 2, 3,
|
|
|
|
31, 30, 5, 6,
|
2018-07-19 05:03:40 +02:00
|
|
|
28, 27, 7,
|
|
|
|
17, 18, 9, 8,
|
|
|
|
19, 21, 11,
|
|
|
|
22, 14, 12,
|
2018-02-23 19:16:10 +01:00
|
|
|
|
|
|
|
16, 26,
|
|
|
|
4, 25,
|
|
|
|
13, 24,
|
|
|
|
20
|
|
|
|
};
|