Changed readPin function to gpio_read_pin function in rev1.c file because of core change: Renaming Arduino-style GPIO pin functions #23085, #23093

This commit is contained in:
atechofficials 2024-07-14 03:13:22 +05:30
parent cdf87c05b0
commit cb54da6861

View File

@ -20,7 +20,7 @@ extern matrix_row_t matrix[]; // Declare the matrix array
void matrix_scan_kb(void) {
// Read the encoder button state and update the matrix
if (readPin(ENCODER_BUTTON_PIN) == 0) {
if (gpio_read_pin(ENCODER_BUTTON_PIN) == 0) {
matrix[ENCODER_BUTTON_ROW] |= (1 << ENCODER_BUTTON_COL);
} else {
matrix[ENCODER_BUTTON_ROW] &= ~(1 << ENCODER_BUTTON_COL);