mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-11 22:44:56 +00:00
12 lines
240 B
C
12 lines
240 B
C
|
/* serial.h backward compatibility */
|
||
|
|
||
|
// #ifndef SOFT_SERIAL_PIN
|
||
|
// #define SOFT_SERIAL_PIN D0
|
||
|
// #endif
|
||
|
|
||
|
#ifndef SERIAL_SLAVE_BUFFER_LENGTH
|
||
|
#define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
|
||
|
#define SERIAL_MASTER_BUFFER_LENGTH 1
|
||
|
#endif
|
||
|
|