More cleanup

- added more time for config layer to activate
- Cleaned up unused code (e.g. combos)
- removed uneeded oled driver include
This commit is contained in:
Victor 2024-04-24 19:33:00 -05:00
parent c5cb76fab5
commit f8603e9bd4
Failed to generate hash of commit
3 changed files with 8 additions and 21 deletions

View file

@ -3,10 +3,10 @@
uint16_t get_combo_term(uint16_t index, combo_t *combo) {
// or with combo index, i.e. its name from enum.
switch (index) {
/*
case CONFIGLAYER:
return COMBO_HOLD_TERM + 150;
*/
case LYR_CONFIG:
return COMBO_HOLD_TERM + 100;
default:
return COMBO_TERM;
@ -39,7 +39,6 @@ bool get_combo_must_hold(uint16_t index, combo_t *combo) {
switch (index) {
case LYR_CONFIG:
//case LYR_FUNCTION:
return true;
default: