Moved spellcheck and rawhid to kb folder
parent
584b39f4c2
commit
4cb3fe0ee9
|
@ -19,7 +19,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "betalupi_ergodox.h"
|
#include "betalupi_ergodox.h"
|
||||||
#include "rawhid.h"
|
#include "features/beta_rawhid.h"
|
||||||
|
|
||||||
extern inline void ergodox_board_led_on(void);
|
extern inline void ergodox_board_led_on(void);
|
||||||
extern inline void ergodox_right_led_1_on(void);
|
extern inline void ergodox_right_led_1_on(void);
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
#include "rawhid.h"
|
#include "betalupi_ergodox.h"
|
||||||
|
|
||||||
|
#include "features/beta_rawhid.h"
|
||||||
#include "extra_mappings.h"
|
#include "extra_mappings.h"
|
||||||
|
|
||||||
extern uint8_t layer_layouts[];
|
extern uint8_t layer_layouts[];
|
||||||
#include "spellcheck.h"
|
#include "features/spellcheck.h"
|
||||||
|
|
||||||
// See rawhid.h for prococol documentation
|
// See features/beta_rawhid.h for prococol documentation
|
||||||
void raw_hid_receive(uint8_t *data, uint8_t length) {
|
void raw_hid_receive(uint8_t *data, uint8_t length) {
|
||||||
uint8_t cmd = data[0];
|
uint8_t cmd = data[0];
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include "betalupi_ergodox.h"
|
|
||||||
#include "raw_hid.h"
|
#include "raw_hid.h"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "spellcheck.h"
|
#include "features/spellcheck.h"
|
||||||
#include "rawhid.h"
|
#include "features/beta_rawhid.h"
|
||||||
|
|
||||||
uint8_t spellcheck_buffer[SPELLCHECK_BUFFER_MAX] = {0};
|
uint8_t spellcheck_buffer[SPELLCHECK_BUFFER_MAX] = {0};
|
||||||
uint8_t spellcheck_buffer_size = 0;
|
uint8_t spellcheck_buffer_size = 0;
|
|
@ -1,8 +1,8 @@
|
||||||
#include "keymap.h"
|
#include "keymap.h"
|
||||||
#include "layers/layers.h"
|
#include "layers/layers.h"
|
||||||
|
|
||||||
#include "spellcheck.h"
|
#include "features/spellcheck.h"
|
||||||
#include "rawhid.h"
|
#include "features/beta_rawhid.h"
|
||||||
|
|
||||||
// Values that should not be saved to git.
|
// Values that should not be saved to git.
|
||||||
// Create a `secrets.h` in the keymap directory.
|
// Create a `secrets.h` in the keymap directory.
|
||||||
|
|
|
@ -6,5 +6,4 @@ TAP_DANCE_ENABLE = yes
|
||||||
SRC += \
|
SRC += \
|
||||||
tapdance/wmlayout.c \
|
tapdance/wmlayout.c \
|
||||||
tapdance/tapdance.c \
|
tapdance/tapdance.c \
|
||||||
layers/layers.c \
|
layers/layers.c
|
||||||
spellcheck.c
|
|
||||||
|
|
|
@ -38,7 +38,8 @@ DEBOUNCE_TYPE = sym_eager_pr
|
||||||
SRC += \
|
SRC += \
|
||||||
matrix.c \
|
matrix.c \
|
||||||
led_i2c.c \
|
led_i2c.c \
|
||||||
rawhid.c \
|
features/beta_rawhid.c \
|
||||||
|
features/spellcheck.c \
|
||||||
extra_mappings.c
|
extra_mappings.c
|
||||||
|
|
||||||
QUANTUM_LIB_SRC += i2c_master.c
|
QUANTUM_LIB_SRC += i2c_master.c
|
||||||
|
|
Loading…
Reference in New Issue