1
0
Fork 0

Keyboard: add mint60 keyboard (#3543)

* add mint60

* change source by reviews
This commit is contained in:
eucalyn 2018-08-20 05:26:42 +09:00 committed by Drashna Jaelre
parent 4cc1edbb67
commit 99da48c72b
20 changed files with 1675 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#ifndef SOFT_SERIAL_CONFIG_H
#define SOFT_SERIAL_CONFIG_H
/* Soft Serial defines */
#define SERIAL_PIN_DDR DDRD
#define SERIAL_PIN_PORT PORTD
#define SERIAL_PIN_INPUT PIND
#define SERIAL_PIN_MASK _BV(PD2)
#define SERIAL_PIN_INTERRUPT INT2_vect
#define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
#define SERIAL_MASTER_BUFFER_LENGTH MATRIX_ROWS/2
//// #error rev2 serial config
#endif /* SOFT_SERIAL_CONFIG_H */