diff options
author | Drashna Jaelre <drashna@live.com> | 2021-08-14 22:39:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-15 15:39:08 +1000 |
commit | 488aaa0980b113240a461d6d7878c62f5663f5c6 (patch) | |
tree | e660854792b5a2b5ae357b0bb6a5115c2daea99a /quantum/split_common/transaction_id_define.h | |
parent | 4b3691e72da69290f63e859bb6ecb55dc561ece5 (diff) |
Enable sync of OLED/ST7565 display on/off state on Splits (#13542)
* Enable sync of OLED/ST7565 display on/off state on Splits
* Only send if states are not matched
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Nick Brassel <nick@tzarc.org>
Diffstat (limited to 'quantum/split_common/transaction_id_define.h')
-rw-r--r-- | quantum/split_common/transaction_id_define.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/split_common/transaction_id_define.h b/quantum/split_common/transaction_id_define.h index 464c73478a..3b78402d4c 100644 --- a/quantum/split_common/transaction_id_define.h +++ b/quantum/split_common/transaction_id_define.h @@ -70,6 +70,14 @@ enum serial_transaction_id { PUT_WPM, #endif // defined(WPM_ENABLE) && defined(SPLIT_WPM_ENABLE) +#if defined(OLED_ENABLE) && defined(SPLIT_OLED_ENABLE) + PUT_OLED, +#endif // defined(WPM_ENABLE) && defined(SPLIT_OLED_ENABLE) + +#if defined(ST7565_ENABLE) && defined(SPLIT_ST7565_ENABLE) + PUT_ST7565, +#endif // defined(ST7565_ENABLE) && defined(SPLIT_ST7565_ENABLE) + #if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER) PUT_RPC_INFO, PUT_RPC_REQ_DATA, |