diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-12 08:33:53 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-12 08:33:53 +0000 |
commit | ddff11cafeab64744aa00fff748ee90bab183f9e (patch) | |
tree | 71f6bc2a0fd4c38fd1be39404a62e8e078219d7b /os | |
parent | 9d343de5f9f3620f8d915a2e6dadf874ef2d02cb (diff) | |
download | ChibiOS-ddff11cafeab64744aa00fff748ee90bab183f9e.tar.gz ChibiOS-ddff11cafeab64744aa00fff748ee90bab183f9e.tar.bz2 ChibiOS-ddff11cafeab64744aa00fff748ee90bab183f9e.zip |
RTC. Naming convention fixed.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/rtc_dev@3599 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/platforms/STM32F1xx/hal_lld_f100.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/STM32F1xx/hal_lld_f103.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/STM32F2xx/hal_lld.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/STM32F4xx/hal_lld.h | 2 | ||||
-rw-r--r-- | os/hal/platforms/STM32L1xx/hal_lld.h | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/os/hal/platforms/STM32F1xx/hal_lld_f100.h b/os/hal/platforms/STM32F1xx/hal_lld_f100.h index bab4957e1..1e34f9728 100644 --- a/os/hal/platforms/STM32F1xx/hal_lld_f100.h +++ b/os/hal/platforms/STM32F1xx/hal_lld_f100.h @@ -182,7 +182,7 @@ #define STM32_SPI3_TX_DMA_CHN 0x00000000
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS TRUE
+#define STM32_RTC_HAS_SUBSECONDS TRUE
/* SDIO attributes.*/
#define STM32_HAS_SDIO FALSE
diff --git a/os/hal/platforms/STM32F1xx/hal_lld_f103.h b/os/hal/platforms/STM32F1xx/hal_lld_f103.h index cbcce1b53..77672ad01 100644 --- a/os/hal/platforms/STM32F1xx/hal_lld_f103.h +++ b/os/hal/platforms/STM32F1xx/hal_lld_f103.h @@ -193,7 +193,7 @@ /* RTC attributes.*/
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS TRUE
+#define STM32_RTC_HAS_SUBSECONDS TRUE
/* SDIO attributes.*/
#define STM32_HAS_SDIO FALSE
diff --git a/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h b/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h index 75a9361df..60c3b421a 100644 --- a/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h +++ b/os/hal/platforms/STM32F1xx/hal_lld_f105_f107.h @@ -185,7 +185,7 @@ /* RTC attributes.*/
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS TRUE
+#define STM32_RTC_HAS_SUBSECONDS TRUE
/* SDIO attributes.*/
#define STM32_HAS_SDIO FALSE
diff --git a/os/hal/platforms/STM32F2xx/hal_lld.h b/os/hal/platforms/STM32F2xx/hal_lld.h index 193d5cf65..43a4a5c27 100644 --- a/os/hal/platforms/STM32F2xx/hal_lld.h +++ b/os/hal/platforms/STM32F2xx/hal_lld.h @@ -180,7 +180,7 @@ #define STM32_I2C3_TX_DMA_CHN 0x00030000
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS FALSE
+#define STM32_RTC_HAS_SUBSECONDS FALSE
#define STM32_HAS_SDIO TRUE
diff --git a/os/hal/platforms/STM32F4xx/hal_lld.h b/os/hal/platforms/STM32F4xx/hal_lld.h index 496c4304f..1aeed4755 100644 --- a/os/hal/platforms/STM32F4xx/hal_lld.h +++ b/os/hal/platforms/STM32F4xx/hal_lld.h @@ -320,7 +320,7 @@ /* RTC attributes.*/
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS TRUE
+#define STM32_RTC_HAS_SUBSECONDS TRUE
/* SDIO attributes.*/
#define STM32_HAS_SDIO TRUE
diff --git a/os/hal/platforms/STM32L1xx/hal_lld.h b/os/hal/platforms/STM32L1xx/hal_lld.h index 040c3af15..fce1a80f6 100644 --- a/os/hal/platforms/STM32L1xx/hal_lld.h +++ b/os/hal/platforms/STM32L1xx/hal_lld.h @@ -217,7 +217,7 @@ /* RTC attributes.*/
#define STM32_HAS_RTC TRUE
-#define RTC_HAS_SUBSECONDS FALSE
+#define STM32_RTC_HAS_SUBSECONDS FALSE
/* SDIO attributes.*/
#define STM32_HAS_SDIO FALSE
|