diff options
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 |