From 3aa21a160ada3d5ff4130af54141833ecb0bbfb4 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Sat, 23 Jan 2021 08:49:44 +1100 Subject: [PATCH] Change name of rtc.h/.ino files to avoid conflict for stm32 --- speeduino/comms.ino | 2 +- speeduino/init.ino | 2 +- speeduino/{rtc.h => rtc_common.h} | 0 speeduino/{rtc.ino => rtc_common.ino} | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename speeduino/{rtc.h => rtc_common.h} (100%) rename speeduino/{rtc.ino => rtc_common.ino} (98%) diff --git a/speeduino/comms.ino b/speeduino/comms.ino index 740f64af..e030ce12 100644 --- a/speeduino/comms.ino +++ b/speeduino/comms.ino @@ -13,7 +13,7 @@ A full copy of the license may be found in the projects root directory #include "TS_CommandButtonHandler.h" #include "errors.h" #include "src/FastCRC/FastCRC.h" -#include "rtc.h" +#include "rtc_common.h" /* Processes the data on the serial buffer. diff --git a/speeduino/init.ino b/speeduino/init.ino index be8c9cf3..6ca1ce8e 100644 --- a/speeduino/init.ino +++ b/speeduino/init.ino @@ -19,7 +19,7 @@ #include EEPROM_LIB_H #ifdef SD_LOGGING #include "SD_logger.h" - #include "rtc.h" + #include "rtc_common.h" #endif diff --git a/speeduino/rtc.h b/speeduino/rtc_common.h similarity index 100% rename from speeduino/rtc.h rename to speeduino/rtc_common.h diff --git a/speeduino/rtc.ino b/speeduino/rtc_common.ino similarity index 98% rename from speeduino/rtc.ino rename to speeduino/rtc_common.ino index 7cacf9fe..6d0c6c12 100644 --- a/speeduino/rtc.ino +++ b/speeduino/rtc_common.ino @@ -1,4 +1,4 @@ -#include "rtc.h" +#include "rtc_common.h" #include "globals.h" #include RTC_LIB_H //Defined in each boards .h file