master
Stefan Dorn 2016-06-11 22:06:57 +01:00
parent c4399c1963
commit 8344f05b60
6 changed files with 108 additions and 123 deletions

View File

@ -10,7 +10,6 @@
#include <stdbool.h>
#include <stdint.h>
#include "./matrix.h"
#include "./controller/mcp23018.h"
#include "./controller/teensy-2-0.h"

View File

@ -13,7 +13,6 @@
#include <avr/pgmspace.h>
#include "../lib/keyboard.h"
#include "../lib/key-functions/public.h"
#include "./matrix.h"
#include "./controller.h"
typedef void (*void_funptr_t)(void);

View File

@ -6,14 +6,7 @@
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#ifndef KEYBOARD__ERGODOX__MATRIX_h
#define KEYBOARD__ERGODOX__MATRIX_h
// --------------------------------------------------------------------
#define KB_ROWS 6 // must match real life
#define KB_COLUMNS 14 // must match real life
#pragma once
// --------------------------------------------------------------------
@ -99,6 +92,3 @@
kxx,kxx, \
kxx,kxx,kxx, \
kxx,kxx,kxx ) \
#endif

View File

@ -6,9 +6,7 @@
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#ifndef KEYBOARD__ERGODOX__OPTIONS_h
#define KEYBOARD__ERGODOX__OPTIONS_h
#pragma once
// --------------------------------------------------------------------
@ -37,4 +35,5 @@
#define MCP23018__DRIVE_ROWS 0
#define MCP23018__DRIVE_COLUMNS 1
#endif
#define KB_ROWS 6 // must match real life
#define KB_COLUMNS 14 // must match real life

View File

@ -14,7 +14,6 @@
#include <stdint.h>
#include "../../main.h"
#include "../../keyboard/layout.h"
#include "../../keyboard/matrix.h"
#include "../../lib-other/pjrc/usb_keyboard/usb_keyboard.h"
#include "../../lib/keyboard.h"

View File

@ -15,7 +15,6 @@
#include "./lib/key-functions/public.h"
#include "./keyboard/controller.h"
#include "./keyboard/layout.h"
#include "./keyboard/matrix.h"
// --------------------------------------------------------------------