diff options
author | Fabien Poussin <fabien.poussin@gmail.com> | 2019-10-30 13:35:59 +0100 |
---|---|---|
committer | Fabien Poussin <fabien.poussin@gmail.com> | 2019-10-30 13:35:59 +0100 |
commit | cf7e66ddaed1f5f0e02b79a691a84a3dbae72348 (patch) | |
tree | 384300c6dd498108241542597cbed7fe08a5dafe /testhal/STM32/STM32F0xx/crc | |
parent | f6b1a12ecf14e4c703b18f3d13537e878215e91a (diff) | |
download | ChibiOS-Contrib-cf7e66ddaed1f5f0e02b79a691a84a3dbae72348.tar.gz ChibiOS-Contrib-cf7e66ddaed1f5f0e02b79a691a84a3dbae72348.tar.bz2 ChibiOS-Contrib-cf7e66ddaed1f5f0e02b79a691a84a3dbae72348.zip |
Updating halconf_community.h for demos/testhal
Diffstat (limited to 'testhal/STM32/STM32F0xx/crc')
-rw-r--r-- | testhal/STM32/STM32F0xx/crc/halconf_community.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F0xx/crc/halconf_community.h b/testhal/STM32/STM32F0xx/crc/halconf_community.h index 91233ed..ad52c4b 100644 --- a/testhal/STM32/STM32F0xx/crc/halconf_community.h +++ b/testhal/STM32/STM32F0xx/crc/halconf_community.h @@ -32,6 +32,20 @@ #endif
/**
+ * @brief Enables the SDRAM subsystem.
+ */
+#if !defined(HAL_USE_SDRAM) || defined(__DOXYGEN__)
+#define HAL_USE_SDRAM FALSE
+#endif
+
+/**
+ * @brief Enables the SRAM subsystem.
+ */
+#if !defined(HAL_USE_SRAM) || defined(__DOXYGEN__)
+#define HAL_USE_SRAM FALSE
+#endif
+
+/**
* @brief Enables the NAND subsystem.
*/
#if !defined(HAL_USE_NAND) || defined(__DOXYGEN__)
|