diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-12-24 20:08:40 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-01-07 19:30:17 -0500 |
commit | c3a2fc981d29202821e8a375005813fec76b32a7 (patch) | |
tree | 357454dc2a5ba4cf8102ce8781eee56e4e136cb2 /src | |
parent | 22da8ca39c98c3f443659b41c6e7813166c9f436 (diff) | |
download | kutter-c3a2fc981d29202821e8a375005813fec76b32a7.tar.gz kutter-c3a2fc981d29202821e8a375005813fec76b32a7.tar.xz kutter-c3a2fc981d29202821e8a375005813fec76b32a7.zip |
lib: Remove sam4e sam.h and component-version.h files
These two files from atmel have different licenses than the other
files. Neither files provide any real value, so just remove them to
avoid any confusion.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/sam4e8e/main.c | 2 | ||||
-rw-r--r-- | src/sam4e8e/serial.c | 2 | ||||
-rw-r--r-- | src/sam4e8e/spi.c | 2 | ||||
-rw-r--r-- | src/sam4e8e/timer.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/sam4e8e/main.c b/src/sam4e8e/main.c index 9e02a5d0..38e9653a 100644 --- a/src/sam4e8e/main.c +++ b/src/sam4e8e/main.c @@ -5,7 +5,7 @@ // This file may be distributed under the terms of the GNU GPLv3 license. // CMSIS -#include "sam.h" +#include "sam4e.h" // Klipper #include "command.h" // DECL_CONSTANT diff --git a/src/sam4e8e/serial.c b/src/sam4e8e/serial.c index 0946186c..7339cbb2 100644 --- a/src/sam4e8e/serial.c +++ b/src/sam4e8e/serial.c @@ -5,7 +5,7 @@ // This file may be distributed under the terms of the GNU GPLv3 license. // CMSIS -#include "sam.h" // UART +#include "sam4e.h" // UART // Klipper #include "autoconf.h" // CONFIG_SERIAL_BAUD diff --git a/src/sam4e8e/spi.c b/src/sam4e8e/spi.c index 5a8a6ae3..a424918f 100644 --- a/src/sam4e8e/spi.c +++ b/src/sam4e8e/spi.c @@ -10,7 +10,7 @@ #include "autoconf.h" // CONFIG_CLOCK_FREQ // SAM4E port -#include "sam.h" +#include "sam4e.h" #include "gpio.h" #define SSPI_USART0 0 diff --git a/src/sam4e8e/timer.c b/src/sam4e8e/timer.c index d5a87a8f..8115ea8a 100644 --- a/src/sam4e8e/timer.c +++ b/src/sam4e8e/timer.c @@ -5,7 +5,7 @@ // This file may be distributed under the terms of the GNU GPLv3 license. // CMSIS -#include "sam.h" +#include "sam4e.h" // Klipper #include "board/irq.h" // irq_disable #include "board/misc.h" // timer_read_time |