diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2015-07-04 07:17:45 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2015-07-04 07:17:45 +0000 |
commit | ff637e456f79ba3cb90265790ac9537c297b331d (patch) | |
tree | 829add0d6372e47bfd0f99f51f5f545be4c5f6b8 /os/hal/ports/STM32/STM32F1xx | |
parent | 731873b5c1934f0f31f36fe006dff9de081a7b29 (diff) | |
download | ChibiOS-ff637e456f79ba3cb90265790ac9537c297b331d.tar.gz ChibiOS-ff637e456f79ba3cb90265790ac9537c297b331d.tar.bz2 ChibiOS-ff637e456f79ba3cb90265790ac9537c297b331d.zip |
Added CRC keys in STM32 registry files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8065 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/STM32F1xx')
-rw-r--r-- | os/hal/ports/STM32/STM32F1xx/stm32_registry.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/STM32F1xx/stm32_registry.h b/os/hal/ports/STM32/STM32F1xx/stm32_registry.h index c2f635977..ee76ca2bf 100644 --- a/os/hal/ports/STM32/STM32F1xx/stm32_registry.h +++ b/os/hal/ports/STM32/STM32F1xx/stm32_registry.h @@ -182,6 +182,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_LD_VL) */
@@ -350,6 +354,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_MD_VL) */
@@ -487,6 +495,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_LD) */
@@ -639,6 +651,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_MD) */
@@ -831,6 +847,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_HD) */
@@ -1023,6 +1043,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_XL) */
@@ -1192,6 +1216,10 @@ /* FSMC attributes.*/
#define STM32_HAS_FSMC FALSE
+
+/* CRC attributes.*/
+#define STM32_HAS_CRC TRUE
+#define STM32_CRC_PROGRAMMABLE FALSE
/** @} */
#endif /* defined(STM32F10X_CL) */
|