|
|
|
@ -28,12 +28,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#include "matrix.h"
|
|
|
|
|
#include "i2c.h"
|
|
|
|
|
#include "serial.h"
|
|
|
|
|
#include "split_util.h"
|
|
|
|
|
#include "pro_micro.h"
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
|
# include "i2c.h"
|
|
|
|
|
#else // USE_SERIAL
|
|
|
|
|
# include "serial.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef DEBOUNCE
|
|
|
|
|
# define DEBOUNCE 5
|
|
|
|
|
#endif
|
|
|
|
@ -145,6 +149,8 @@ uint8_t _matrix_scan(void)
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
|
|
|
|
|
|
// Get rows from other half over i2c
|
|
|
|
|
int i2c_transaction(void) {
|
|
|
|
|
int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
|
|
|
|
@ -176,7 +182,8 @@ i2c_error: // the cable is disconnceted, or something else went wrong
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef USE_I2C
|
|
|
|
|
#else // USE_SERIAL
|
|
|
|
|
|
|
|
|
|
int serial_transaction(void) {
|
|
|
|
|
int slaveOffset = (isLeftHand) ? (ROWS_PER_HAND) : 0;
|
|
|
|
|
|
|
|
|
@ -199,7 +206,7 @@ uint8_t matrix_scan(void)
|
|
|
|
|
|
|
|
|
|
#ifdef USE_I2C
|
|
|
|
|
if( i2c_transaction() ) {
|
|
|
|
|
#else
|
|
|
|
|
#else // USE_SERIAL
|
|
|
|
|
if( serial_transaction() ) {
|
|
|
|
|
#endif
|
|
|
|
|
// turn on the indicator led when halves are disconnected
|
|
|
|
@ -235,7 +242,7 @@ void matrix_slave_scan(void) {
|
|
|
|
|
/* i2c_slave_buffer[i] = matrix[offset+i]; */
|
|
|
|
|
i2c_slave_buffer[i] = matrix[offset+i];
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#else // USE_SERIAL
|
|
|
|
|
for (int i = 0; i < ROWS_PER_HAND; ++i) {
|
|
|
|
|
serial_slave_buffer[i] = matrix[offset+i];
|
|
|
|
|
}
|
|
|
|
|