aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/STM32/stm32.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-04-21 08:20:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-04-21 08:20:04 +0000
commitec673b751baf02353ee6bd2249d4d92f1e538e0e (patch)
tree00466ac022cd272c9b1ee5f51c04299208a1880c /os/hal/platforms/STM32/stm32.h
parent51a3a6904a3fa53370e4d29ef75c0757c533e9ab (diff)
downloadChibiOS-ec673b751baf02353ee6bd2249d4d92f1e538e0e.tar.gz
ChibiOS-ec673b751baf02353ee6bd2249d4d92f1e538e0e.tar.bz2
ChibiOS-ec673b751baf02353ee6bd2249d4d92f1e538e0e.zip
Fixed bug #484.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6851 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/STM32/stm32.h')
-rw-r--r--os/hal/platforms/STM32/stm32.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/os/hal/platforms/STM32/stm32.h b/os/hal/platforms/STM32/stm32.h
index 45753a6aa..1ad0691bc 100644
--- a/os/hal/platforms/STM32/stm32.h
+++ b/os/hal/platforms/STM32/stm32.h
@@ -33,6 +33,8 @@
* - STM32F37X for Analog & DSP devices.
* - STM32F4XX for High-performance STM32 F-4 devices.
* - STM32L1XX_MD for Ultra Low Power Medium-density devices.
+ * - STM32L1XX_MDP for Ultra Low Power Medium-density Plus devices.
+ * - STM32L1XX_HD for Ultra Low Power High-density devices.
* .
*
* @addtogroup HAL
@@ -66,7 +68,8 @@
defined(STM32F427_437xx) || defined(STM32F429_439xx)
#include "stm32f4xx.h"
-#elif defined(STM32L1XX_MD)
+#elif defined(STM32L1XX_MD) || defined(STM32L1XX_MDP) || \
+ defined(STM32L1XX_HD)
#include "stm32l1xx.h"
#else