From 9cc383a91dbf9460c1e9396d701ce4943676192a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 5 Aug 2018 22:49:31 +0200 Subject: [PATCH] Delete config.h --- left/src/config.h | 4 ---- left/src/i2c_watchdog.c | 1 - left/src/key_scanner.c | 1 - left/src/main.c | 1 - 4 files changed, 7 deletions(-) delete mode 100644 left/src/config.h diff --git a/left/src/config.h b/left/src/config.h deleted file mode 100644 index 6cd1516..0000000 --- a/left/src/config.h +++ /dev/null @@ -1,4 +0,0 @@ -#ifndef __CONFIG_H__ -#define __CONFIG_H__ - -#endif diff --git a/left/src/i2c_watchdog.c b/left/src/i2c_watchdog.c index 98d7634..51c07dd 100644 --- a/left/src/i2c_watchdog.c +++ b/left/src/i2c_watchdog.c @@ -3,7 +3,6 @@ #include "i2c_watchdog.h" #include "test_led.h" #include "init_peripherals.h" -#include "config.h" // NOTE: Because of a bug in the ROM bootloader of the KL03Z, the watchdog timer is disabled and cannot be re-enabled. // See https://community.nxp.com/thread/457893 diff --git a/left/src/key_scanner.c b/left/src/key_scanner.c index 9940693..5c46040 100644 --- a/left/src/key_scanner.c +++ b/left/src/key_scanner.c @@ -1,6 +1,5 @@ #include "fsl_lptmr.h" #include "key_scanner.h" -#include "config.h" #include "i2c_watchdog.h" void KEY_SCANNER_HANDLER(void) diff --git a/left/src/main.c b/left/src/main.c index f362a52..664b862 100644 --- a/left/src/main.c +++ b/left/src/main.c @@ -3,7 +3,6 @@ #include "init_peripherals.h" #include "bootloader.h" #include -#include "config.h" #include "key_scanner.h" DEFINE_BOOTLOADER_CONFIG_AREA(I2C_ADDRESS_LEFT_KEYBOARD_HALF_BOOTLOADER)