X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=layer.c;h=700752c98a0b023f2a5e3f10488b2f353dcddca4;hb=068c31a7ba9fc6aea33f69c0edb30ad195c320ec;hp=7138c0ed1d63ba8d0bb0ca0d608b1be133ac2880;hpb=2b8cd88ab142068eed0a3f230a3de79deb567536;p=max%2Ftmk_keyboard.git diff --git a/layer.c b/layer.c index 7138c0ed..700752c9 100644 --- a/layer.c +++ b/layer.c @@ -1,9 +1,10 @@ -#include "keymap_skel.h" +#include "keymap.h" #include "host.h" #include "debug.h" #include "timer.h" #include "layer.h" + /* * Parameters: * ENTER_DELAY |=======| @@ -51,7 +52,7 @@ */ // LAYER_ENTER_DELAY: prevent from moving new layer -#define LAYER_ENTER_DELAY 10 +#define LAYER_ENTER_DELAY 5 // LAYER_SEND_FN_TERM: send keycode if release key in this term #define LAYER_SEND_FN_TERM 40 @@ -75,7 +76,7 @@ uint8_t layer_get_keycode(uint8_t row, uint8_t col) } // bit substract b from a -#define BIT_SUBT(a, b) (a&(a^b)) +#define BIT_SUBST(a, b) (a&(a^b)) void layer_switching(uint8_t fn_bits) { // layer switching @@ -89,7 +90,7 @@ void layer_switching(uint8_t fn_bits) // do nothing } else { if (timer_elapsed(last_timer) > LAYER_ENTER_DELAY) { - uint8_t _layer_to_switch = new_layer(BIT_SUBT(fn_bits, sent_fn)); + uint8_t _layer_to_switch = new_layer(BIT_SUBST(fn_bits, sent_fn)); if (current_layer != _layer_to_switch) { // not switch layer yet debug("Fn case: 1,2,3(LAYER_ENTER_DELAY passed)\n"); debug("Switch Layer: "); debug_hex(current_layer); @@ -99,14 +100,14 @@ void layer_switching(uint8_t fn_bits) } } else { if (host_has_anykey()) { // other keys is pressed - uint8_t _fn_to_send = BIT_SUBT(fn_bits, sent_fn); + uint8_t _fn_to_send = BIT_SUBST(fn_bits, sent_fn); if (_fn_to_send) { debug("Fn case: 4(send Fn before other key pressed)\n"); // send only Fn key first host_swap_keyboard_report(); host_clear_keyboard_report(); - host_add_code(keymap_fn_keycode(_fn_to_send)); // TODO: do all Fn keys host_set_mods(last_mods); + host_add_code(keymap_fn_keycode(_fn_to_send)); // TODO: do all Fn keys host_send_keyboard_report(); host_swap_keyboard_report(); sent_fn |= _fn_to_send; @@ -126,44 +127,43 @@ void layer_switching(uint8_t fn_bits) debug("last_timer: "); debug_hex16(last_timer); debug("\n"); // pressed Fn - if ((fn_changed = BIT_SUBT(fn_bits, last_fn))) { + if ((fn_changed = BIT_SUBST(fn_bits, last_fn))) { debug("fn_changed: "); debug_bin(fn_changed); debug("\n"); if (host_has_anykey()) { debug("Fn case: 5(pressed Fn with other key)\n"); sent_fn |= fn_changed; } else if (fn_changed & sent_fn) { // pressed same Fn in a row if (timer_elapsed(last_timer) > LAYER_ENTER_DELAY) { - debug("Fn case: 6(repate2)\n"); + debug("Fn case: 6(not repeat)\n"); // time passed: not repeate sent_fn &= ~fn_changed; } else { - debug("Fn case: 6(repate)\n"); + debug("Fn case: 6(repeat)\n"); } } } // released Fn - if ((fn_changed = BIT_SUBT(last_fn, fn_bits))) { + if ((fn_changed = BIT_SUBST(last_fn, fn_bits))) { debug("fn_changed: "); debug_bin(fn_changed); debug("\n"); if (timer_elapsed(last_timer) < LAYER_SEND_FN_TERM) { - //if (!layer_used && BIT_SUBT(fn_changed, sent_fn)) { // layer not used && Fn not sent - if (BIT_SUBT(fn_changed, sent_fn)) { // layer not used && Fn not sent + if (!layer_used && BIT_SUBST(fn_changed, sent_fn)) { debug("Fn case: 2(send Fn one shot: released Fn during LAYER_SEND_FN_TERM)\n"); // send only Fn key first host_swap_keyboard_report(); host_clear_keyboard_report(); - host_add_code(keymap_fn_keycode(fn_changed)); // TODO: do all Fn keys host_set_mods(last_mods); + host_add_code(keymap_fn_keycode(fn_changed)); // TODO: do all Fn keys host_send_keyboard_report(); host_swap_keyboard_report(); sent_fn |= fn_changed; } } debug("Switch Layer(released Fn): "); debug_hex(current_layer); - current_layer = new_layer(BIT_SUBT(fn_bits, sent_fn)); - layer_used = false; + current_layer = new_layer(BIT_SUBST(fn_bits, sent_fn)); debug(" -> "); debug_hex(current_layer); debug("\n"); } + layer_used = false; last_fn = fn_bits; last_mods = keyboard_report->mods; last_timer = timer_read();