You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
412 B
17 lines
412 B
6 years ago
|
#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 */
|