Keyboard: add ergoinu keyboard (#3655)

* add ergoinu

* remove unnecessary code

* replace include guard
delete unused code

* remove unused RGBLED defines
This commit is contained in:
Takuya Urakawa
2018-08-17 00:36:35 +09:00
committed by Drashna Jaelre
parent a828d49f8c
commit 303ca46e77
18 changed files with 1299 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include <stdbool.h>
// ////////////////////////////////////////////
// Need Soft Serial defines in serial_config.h
// ////////////////////////////////////////////
// ex.
// #define SERIAL_PIN_DDR DDRD
// #define SERIAL_PIN_PORT PORTD
// #define SERIAL_PIN_INPUT PIND
// #define SERIAL_PIN_MASK _BV(PD?) ?=0,2
// #define SERIAL_PIN_INTERRUPT INT?_vect ?=0,2
// #define SERIAL_SLAVE_BUFFER_LENGTH MATRIX_ROWS/2
// #define SERIAL_MASTER_BUFFER_LENGTH MATRIX_ROWS/2
// Buffers for master - slave communication
extern volatile uint8_t serial_slave_buffer[SERIAL_SLAVE_BUFFER_LENGTH];
extern volatile uint8_t serial_master_buffer[SERIAL_MASTER_BUFFER_LENGTH];
void serial_master_init(void);
void serial_slave_init(void);
int serial_update_buffers(void);
bool serial_slave_data_corrupt(void);