From 710c457afeb7b8132000071468b147ab8c3f8612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 22 Mar 2015 14:26:37 +0100 Subject: Moving mcu grouping to separate header mcu.h is from now for mcu groups defines. mcu_def now doing same as mcu.h previous. --- src/spi.c | 2 +- src/spi_usart.c | 2 +- src/spi_usi.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/spi.c b/src/spi.c index 8462905..77ed8a3 100644 --- a/src/spi.c +++ b/src/spi.c @@ -1,5 +1,5 @@ #include "../spi.h" -#include "mcu/mcu.h" +#include "mcu/mcu_def.h" inline void ioe_spi_join(void) { // TODO diff --git a/src/spi_usart.c b/src/spi_usart.c index 40eb06d..2e5d612 100644 --- a/src/spi_usart.c +++ b/src/spi_usart.c @@ -1,5 +1,5 @@ #include "../spi_usart.h" -#include "mcu/mcu.h" +#include "../mcu/mcu_def.h" inline void ioe_spi_usart_init(void) { } diff --git a/src/spi_usi.c b/src/spi_usi.c index 7bdb5c2..8baa8e2 100644 --- a/src/spi_usi.c +++ b/src/spi_usi.c @@ -1,5 +1,5 @@ #include "../spi_usi.h" -#include "../mcu/mcu.h" +#include "../mcu/mcu_def.h" #ifdef IOE_SPI_USI_MASTER -- cgit v1.2.3