From ad702096a97677eab5c1931d6f0d4a51e1a564a5 Mon Sep 17 00:00:00 2001 From: XScorpion2 Date: Fri, 21 Jan 2022 21:51:12 -0600 Subject: [Keyboard] Sol 3 Keyboard from RGBKB (#15687) Co-authored-by: Ryan Co-authored-by: Franklyn Tackitt --- keyboards/rgbkb/common/touch_encoder.c | 6 +++--- keyboards/rgbkb/common/touch_encoder.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'keyboards/rgbkb/common') diff --git a/keyboards/rgbkb/common/touch_encoder.c b/keyboards/rgbkb/common/touch_encoder.c index 6293739ec9..1e6c54e8eb 100644 --- a/keyboards/rgbkb/common/touch_encoder.c +++ b/keyboards/rgbkb/common/touch_encoder.c @@ -292,7 +292,7 @@ void touch_encoder_calibrate(void) { write_register8(QT_CALIBRATE, 0x01); } -bool touch_encoder_calibrating(void) { +bool touch_encoder_is_calibrating(void) { return touch_raw[0] & CALIBRATION_BIT; } @@ -300,8 +300,8 @@ void touch_encoder_toggle(void) { touch_disabled = !touch_disabled; } -bool touch_encoder_toggled(void) { - return touch_disabled; +bool touch_encoder_is_on(void) { + return !touch_disabled; } void touch_encoder_slave_sync(uint8_t initiator2target_buffer_size, const void* initiator2target_buffer, uint8_t target2initiator_buffer_size, void* target2initiator_buffer) { diff --git a/keyboards/rgbkb/common/touch_encoder.h b/keyboards/rgbkb/common/touch_encoder.h index 022f619063..bc9a9ccb7f 100644 --- a/keyboards/rgbkb/common/touch_encoder.h +++ b/keyboards/rgbkb/common/touch_encoder.h @@ -34,10 +34,10 @@ void touch_encoder_init(void); void touch_encoder_update(int8_t transaction_id); void touch_encoder_calibrate(void); -bool touch_encoder_calibrating(void); +bool touch_encoder_is_calibrating(void); void touch_encoder_toggle(void); -bool touch_encoder_toggled(void); +bool touch_encoder_is_on(void); // Called when touch encoder is tapped, weak function overridable by the kb bool touch_encoder_tapped_kb(uint8_t index, uint8_t section); -- cgit v1.2.3