|
@@ -25,19 +25,6 @@ static uint16_t autoshift_time = 0;
|
|
static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;
|
|
static uint16_t autoshift_timeout = AUTO_SHIFT_TIMEOUT;
|
|
static uint16_t autoshift_lastkey = KC_NO;
|
|
static uint16_t autoshift_lastkey = KC_NO;
|
|
|
|
|
|
-void autoshift_timer_report(void) {
|
|
|
|
- char display[8];
|
|
|
|
-
|
|
|
|
- snprintf(display, 8, "\n%d\n", autoshift_timeout);
|
|
|
|
-
|
|
|
|
- send_string((const char *)display);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-void autoshift_on(uint16_t keycode) {
|
|
|
|
- autoshift_time = timer_read();
|
|
|
|
- autoshift_lastkey = keycode;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
void autoshift_flush(void) {
|
|
void autoshift_flush(void) {
|
|
if (autoshift_lastkey != KC_NO) {
|
|
if (autoshift_lastkey != KC_NO) {
|
|
uint16_t elapsed = timer_elapsed(autoshift_time);
|
|
uint16_t elapsed = timer_elapsed(autoshift_time);
|
|
@@ -53,21 +40,36 @@ void autoshift_flush(void) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void autoshift_enable(void) { autoshift_enabled = true; }
|
|
|
|
-void autoshift_disable(void) {
|
|
|
|
|
|
+void autoshift_on(uint16_t keycode) {
|
|
|
|
+ autoshift_time = timer_read();
|
|
|
|
+ autoshift_lastkey = keycode;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void autoshift_toggle(void) {
|
|
|
|
+ if (autoshift_enabled) {
|
|
autoshift_enabled = false;
|
|
autoshift_enabled = false;
|
|
autoshift_flush();
|
|
autoshift_flush();
|
|
|
|
+ } else {
|
|
|
|
+ autoshift_enabled = true;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
-void autoshift_toggle(void) {
|
|
|
|
- if (autoshift_enabled) {
|
|
|
|
- autoshift_enabled = false;
|
|
|
|
- autoshift_flush();
|
|
|
|
- } else {
|
|
|
|
- autoshift_enabled = true;
|
|
|
|
- }
|
|
|
|
|
|
+void autoshift_enable(void) { autoshift_enabled = true; }
|
|
|
|
+void autoshift_disable(void) {
|
|
|
|
+ autoshift_enabled = false;
|
|
|
|
+ autoshift_flush();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#ifndef AUTO_SHIFT_NO_SETUP
|
|
|
|
+void autoshift_timer_report(void) {
|
|
|
|
+ char display[8];
|
|
|
|
+
|
|
|
|
+ snprintf(display, 8, "\n%d\n", autoshift_timeout);
|
|
|
|
+
|
|
|
|
+ send_string((const char *)display);
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
bool get_autoshift_state(void) { return autoshift_enabled; }
|
|
bool get_autoshift_state(void) { return autoshift_enabled; }
|
|
|
|
|
|
uint16_t get_autoshift_timeout(void) { return autoshift_timeout; }
|
|
uint16_t get_autoshift_timeout(void) { return autoshift_timeout; }
|
|
@@ -77,21 +79,11 @@ void set_autoshift_timeout(uint16_t timeout) { autoshift_timeout = timeout; }
|
|
bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {
|
|
bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {
|
|
if (record->event.pressed) {
|
|
if (record->event.pressed) {
|
|
switch (keycode) {
|
|
switch (keycode) {
|
|
- case KC_ASUP:
|
|
|
|
- autoshift_timeout += 5;
|
|
|
|
- return true;
|
|
|
|
-
|
|
|
|
- case KC_ASDN:
|
|
|
|
- autoshift_timeout -= 5;
|
|
|
|
- return true;
|
|
|
|
-
|
|
|
|
- case KC_ASRP:
|
|
|
|
- autoshift_timer_report();
|
|
|
|
- return true;
|
|
|
|
|
|
|
|
case KC_ASTG:
|
|
case KC_ASTG:
|
|
autoshift_toggle();
|
|
autoshift_toggle();
|
|
return true;
|
|
return true;
|
|
|
|
+
|
|
case KC_ASON:
|
|
case KC_ASON:
|
|
autoshift_enable();
|
|
autoshift_enable();
|
|
return true;
|
|
return true;
|
|
@@ -99,6 +91,18 @@ bool process_auto_shift(uint16_t keycode, keyrecord_t *record) {
|
|
autoshift_disable();
|
|
autoshift_disable();
|
|
return true;
|
|
return true;
|
|
|
|
|
|
|
|
+# ifndef AUTO_SHIFT_NO_SETUP
|
|
|
|
+ case KC_ASUP:
|
|
|
|
+ autoshift_timeout += 5;
|
|
|
|
+ return true;
|
|
|
|
+ case KC_ASDN:
|
|
|
|
+ autoshift_timeout -= 5;
|
|
|
|
+ return true;
|
|
|
|
+
|
|
|
|
+ case KC_ASRP:
|
|
|
|
+ autoshift_timer_report();
|
|
|
|
+ return true;
|
|
|
|
+# endif
|
|
# ifndef NO_AUTO_SHIFT_ALPHA
|
|
# ifndef NO_AUTO_SHIFT_ALPHA
|
|
case KC_A ... KC_Z:
|
|
case KC_A ... KC_Z:
|
|
# endif
|
|
# endif
|