Fixed transactions

This commit is contained in:
Matthias Fulz 2022-06-26 21:59:21 +02:00
parent 43ef5cedf0
commit eb60e9230a
1 changed files with 6 additions and 0 deletions

View File

@ -742,6 +742,8 @@ split_transaction_desc_t split_transaction_table[NUM_TOTAL_TRANSACTIONS] = {
TRANSACTIONS_OLED_REGISTRATIONS
TRANSACTIONS_ST7565_REGISTRATIONS
TRANSACTIONS_POINTING_REGISTRATIONS
TRANSACTIONS_ENC_MODE_REGISTRATIONS
TRANSACTIONS_ENC_FLAGS_REGISTRATIONS
// clang-format on
#if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER)
@ -768,6 +770,8 @@ bool transactions_master(matrix_row_t master_matrix[], matrix_row_t slave_matrix
TRANSACTIONS_OLED_MASTER();
TRANSACTIONS_ST7565_MASTER();
TRANSACTIONS_POINTING_MASTER();
TRANSACTIONS_ENC_MODE_MASTER();
TRANSACTIONS_ENC_FLAGS_MASTER();
return true;
}
@ -787,6 +791,8 @@ void transactions_slave(matrix_row_t master_matrix[], matrix_row_t slave_matrix[
TRANSACTIONS_OLED_SLAVE();
TRANSACTIONS_ST7565_SLAVE();
TRANSACTIONS_POINTING_SLAVE();
TRANSACTIONS_ENC_MODE_SLAVE();
TRANSACTIONS_ENC_FLAGS_SLAVE();
}
#if defined(SPLIT_TRANSACTION_IDS_KB) || defined(SPLIT_TRANSACTION_IDS_USER)