Browse Source

[Keyboard] Fix matrix delay on Drop boards (#13671)

pull/13677/head
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
e35672169e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      keyboards/massdrop/alt/alt.c
  2. +1
    -1
      keyboards/massdrop/ctrl/ctrl.c

+ 1
- 1
keyboards/massdrop/alt/alt.c View File

@ -18,4 +18,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* Temporary solution for matrix delay */
void matrix_output_select_delay(void) { matrix_io_delay(); }
void matrix_output_unselect_delay(void) { }
void matrix_output_unselect_delay(uint8_t line, bool key_pressed) {}

+ 1
- 1
keyboards/massdrop/ctrl/ctrl.c View File

@ -18,4 +18,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* Temporary solution for matrix delay */
void matrix_output_select_delay(void) { matrix_io_delay(); }
void matrix_output_unselect_delay(void) { }
void matrix_output_unselect_delay(uint8_t line, bool key_pressed) {}

Loading…
Cancel
Save