1
0
Fork 0

[Keyboard] Sol 3 Keyboard from RGBKB (#15687)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Franklyn Tackitt <franklyn@tackitt.net>
This commit is contained in:
XScorpion2 2022-01-21 21:51:12 -06:00 committed by GitHub
parent b45a037c7e
commit ad702096a9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 1268 additions and 14 deletions

View file

@ -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) {