From eea844796a2cdbea9f4ddf51f9766ff3964984b6 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 17 Sep 2011 06:48:56 +0000 Subject: Fixed paths in IAR project for STM32L152-Discovery board. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3322 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- demos/ARMCM3-STM32L152-DISCOVERY/halconf.h | 6 +++--- demos/ARMCM3-STM32L152-DISCOVERY/iar/ch.ewp | 27 ++++++++++++++++++++------- demos/ARMCM3-STM32L152-DISCOVERY/main.c | 2 +- 3 files changed, 24 insertions(+), 11 deletions(-) (limited to 'demos') diff --git a/demos/ARMCM3-STM32L152-DISCOVERY/halconf.h b/demos/ARMCM3-STM32L152-DISCOVERY/halconf.h index 2a5f1806e..b9bee3656 100644 --- a/demos/ARMCM3-STM32L152-DISCOVERY/halconf.h +++ b/demos/ARMCM3-STM32L152-DISCOVERY/halconf.h @@ -115,14 +115,14 @@ * @brief Enables the SERIAL subsystem. */ #if !defined(HAL_USE_SERIAL) || defined(__DOXYGEN__) -#define HAL_USE_SERIAL FALSE +#define HAL_USE_SERIAL TRUE #endif /** * @brief Enables the SERIAL over USB subsystem. */ #if !defined(HAL_USE_SERIAL_USB) || defined(__DOXYGEN__) -#define HAL_USE_SERIAL_USB TRUE +#define HAL_USE_SERIAL_USB FALSE #endif /** @@ -143,7 +143,7 @@ * @brief Enables the USB subsystem. */ #if !defined(HAL_USE_USB) || defined(__DOXYGEN__) -#define HAL_USE_USB TRUE +#define HAL_USE_USB FALSE #endif /*===========================================================================*/ diff --git a/demos/ARMCM3-STM32L152-DISCOVERY/iar/ch.ewp b/demos/ARMCM3-STM32L152-DISCOVERY/iar/ch.ewp index 88946580b..d84ff7beb 100644 --- a/demos/ARMCM3-STM32L152-DISCOVERY/iar/ch.ewp +++ b/demos/ARMCM3-STM32L152-DISCOVERY/iar/ch.ewp @@ -295,9 +295,14 @@ CCIncludePath2 $PROJ_DIR$\..\ $PROJ_DIR$\..\..\..\os\kernel\include + $PROJ_DIR$\..\..\..\os\ports\common\ARMCMx\CMSIS\include $PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx $PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\STM32L1xx $PROJ_DIR$\..\..\..\os\hal\include + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\DMAv1 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\GPIOv2 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\USBv1 $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx $PROJ_DIR$\..\..\..\boards\ST_STM32L_DISCOVERY $PROJ_DIR$\..\..\..\test @@ -1198,9 +1203,14 @@ CCIncludePath2 $PROJ_DIR$\..\ $PROJ_DIR$\..\..\..\os\kernel\include + $PROJ_DIR$\..\..\..\os\ports\common\ARMCMx\CMSIS\include $PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx $PROJ_DIR$\..\..\..\os\ports\IAR\ARMCMx\STM32L1xx $PROJ_DIR$\..\..\..\os\hal\include + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\DMAv1 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\GPIOv2 + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\USBv1 $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx $PROJ_DIR$\..\..\..\boards\ST_STM32L_DISCOVERY $PROJ_DIR$\..\..\..\test @@ -2028,9 +2038,6 @@ platform - - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\core_cm3.h - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\hal_lld.c @@ -2038,16 +2045,22 @@ $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\hal_lld.h - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\pal_lld.c + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\GPIOv2\pal_lld.c + + + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\GPIOv2\pal_lld.h + + + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\serial_lld.c - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\pal_lld.h + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\serial_lld.h - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\stm32_dma.c + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\DMAv1\stm32_dma.c - $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\stm32_dma.h + $PROJ_DIR$\..\..\..\os\hal\platforms\STM32\DMAv1\stm32_dma.h $PROJ_DIR$\..\..\..\os\hal\platforms\STM32L1xx\stm32l1xx.h diff --git a/demos/ARMCM3-STM32L152-DISCOVERY/main.c b/demos/ARMCM3-STM32L152-DISCOVERY/main.c index 6f0ea53a0..3eaddc5fc 100644 --- a/demos/ARMCM3-STM32L152-DISCOVERY/main.c +++ b/demos/ARMCM3-STM32L152-DISCOVERY/main.c @@ -61,7 +61,7 @@ int main(void) { /* * Activates the serial driver 1 using the driver default configuration. */ -// sdStart(&SD1, NULL); + sdStart(&SD1, NULL); /* * If the user button is pressed after the reset then the test suite is -- cgit v1.2.3