remove useless headers

master
Stefan Dorn 2016-06-11 20:13:46 +01:00
parent c8fd4b83e1
commit 3dda86dd7e
9 changed files with 10 additions and 58 deletions

View File

@ -1,16 +0,0 @@
/* ----------------------------------------------------------------------------
* controller specific exports
*
* Files for different keyboards are used by modifying a variable in the
* Makefile
* ----------------------------------------------------------------------------
* Copyright (c) 2012 Ben Blazak <benblazak.dev@gmail.com>
* Released under The MIT License (MIT) (see "license.md")
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#include "../lib/variable-include.h"
#define INCLUDE EXP_STR( ./MAKEFILE_KEYBOARD/controller.h )
#include INCLUDE

View File

@ -1,16 +0,0 @@
/* ----------------------------------------------------------------------------
* layout specific exports
*
* Files for different keyboards are used by modifying a variable in the
* Makefile
* ----------------------------------------------------------------------------
* Copyright (c) 2012 Ben Blazak <benblazak.dev@gmail.com>
* Released under The MIT License (MIT) (see "license.md")
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#include "../lib/variable-include.h"
#define INCLUDE EXP_STR( ./MAKEFILE_KEYBOARD/layout.h )
#include INCLUDE

View File

@ -1,16 +0,0 @@
/* ----------------------------------------------------------------------------
* matrix specific exports
*
* Files for different keyboards are used by modifying a variable in the
* Makefile
* ----------------------------------------------------------------------------
* Copyright (c) 2012 Ben Blazak <benblazak.dev@gmail.com>
* Released under The MIT License (MIT) (see "license.md")
* Project located at <https://github.com/benblazak/ergodox-firmware>
* ------------------------------------------------------------------------- */
#include "../lib/variable-include.h"
#define INCLUDE EXP_STR( ./MAKEFILE_KEYBOARD/matrix.h )
#include INCLUDE

View File

@ -10,8 +10,8 @@
#include <stdint.h>
#include "../../lib-other/pjrc/usb_keyboard/usb_keyboard.h"
#include "../../lib/usb/usage-page/keyboard.h"
#include "../../keyboard/layout.h"
#include "../../keyboard/matrix.h"
#include "../../keyboard/ergodox/layout.h"
#include "../../keyboard/ergodox/matrix.h"
#include "../../main.h"
#include "./public.h"

View File

@ -15,7 +15,7 @@
#include <stdbool.h>
#include <stdint.h>
#include "../../keyboard/matrix.h"
#include "../../keyboard/ergodox/matrix.h"
// --------------------------------------------------------------------

View File

@ -8,7 +8,7 @@
#include "../../../main.h"
#include "../../../keyboard/layout.h"
#include "../../../keyboard/ergodox/layout.h"
#include "../public.h"
#include "../private.h"

View File

@ -11,7 +11,7 @@
#include <stdint.h>
#include "../../../lib-other/pjrc/usb_keyboard/usb_keyboard.h"
#include "../../../lib/usb/usage-page/keyboard.h"
#include "../../../keyboard/layout.h"
#include "../../../keyboard/ergodox/layout.h"
#include "../../../main.h"
#include "../public.h"
#include "../private.h"

View File

@ -12,9 +12,9 @@
#include <util/delay.h>
#include "./lib-other/pjrc/usb_keyboard/usb_keyboard.h"
#include "./lib/key-functions/public.h"
#include "./keyboard/controller.h"
#include "./keyboard/layout.h"
#include "./keyboard/matrix.h"
#include "./keyboard/ergodox/controller.h"
#include "./keyboard/ergodox/layout.h"
#include "./keyboard/ergodox/matrix.h"
#include "./main.h"
// ----------------------------------------------------------------------------

View File

@ -12,8 +12,8 @@
#include <stdbool.h>
#include <stdint.h>
#include "./keyboard/layout.h"
#include "./keyboard/matrix.h"
#include "keyboard/ergodox/layout.h"
#include "keyboard/ergodox/matrix.h"
// --------------------------------------------------------------------