Merge pull request #434 from keyboardio/f/oneshot/mask-no-more

OneShot: Drop the key masking workaround
pull/438/head
Jesse Vincent 6 years ago committed by GitHub
commit d25af9920d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,7 +34,6 @@ OneShot::state_t OneShot::pressed_state_;
Key OneShot::prev_key_; Key OneShot::prev_key_;
bool OneShot::should_cancel_ = false; bool OneShot::should_cancel_ = false;
bool OneShot::should_cancel_stickies_ = false; bool OneShot::should_cancel_stickies_ = false;
bool OneShot::should_mask_on_interrupt_ = false;
uint8_t OneShot::positions_[16]; uint8_t OneShot::positions_[16];
// --- helper macros ------ // --- helper macros ------
@ -104,10 +103,6 @@ EventHandlerResult OneShot::onKeyswitchEvent(Key &mapped_key, byte row, byte col
if (keyToggledOff(keyState)) { if (keyToggledOff(keyState)) {
clearPressed(idx); clearPressed(idx);
if (mapped_key >= ranges::OSL_FIRST && mapped_key <= ranges::OSL_LAST) {
should_mask_on_interrupt_ = true;
}
} else if (keyToggledOn(keyState)) { } else if (keyToggledOn(keyState)) {
start_time_ = millis(); start_time_ = millis();
positions_[idx] = row * COLS + col; positions_[idx] = row * COLS + col;
@ -178,8 +173,6 @@ EventHandlerResult OneShot::onKeyswitchEvent(Key &mapped_key, byte row, byte col
if (keyIsPressed(keyState)) { if (keyIsPressed(keyState)) {
saveAsPrevious(mapped_key); saveAsPrevious(mapped_key);
if (!isModifier(mapped_key) && (mapped_key.flags != (KEY_FLAGS | SYNTHETIC | SWITCH_TO_KEYMAP))) { if (!isModifier(mapped_key) && (mapped_key.flags != (KEY_FLAGS | SYNTHETIC | SWITCH_TO_KEYMAP))) {
if (should_mask_on_interrupt_)
KeyboardHardware.maskKey(row, col);
should_cancel_ = true; should_cancel_ = true;
} }
} }
@ -228,7 +221,6 @@ EventHandlerResult OneShot::afterEachCycle() {
if (is_cancelled) { if (is_cancelled) {
should_cancel_ = false; should_cancel_ = false;
should_cancel_stickies_ = false; should_cancel_stickies_ = false;
should_mask_on_interrupt_ = false;
} }
return EventHandlerResult::OK; return EventHandlerResult::OK;

@ -72,7 +72,6 @@ class OneShot : public kaleidoscope::Plugin {
static Key prev_key_; static Key prev_key_;
static bool should_cancel_; static bool should_cancel_;
static bool should_cancel_stickies_; static bool should_cancel_stickies_;
static bool should_mask_on_interrupt_;
static uint8_t positions_[16]; static uint8_t positions_[16];
static void positionToCoords(uint8_t pos, byte *row, byte *col); static void positionToCoords(uint8_t pos, byte *row, byte *col);

Loading…
Cancel
Save