diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-10-02 10:13:13 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-10-02 10:13:13 +0000 |
commit | 736e966cf5cd6cae1732d874229f363ecfcb9b3a (patch) | |
tree | 048b7f449520541d905bfd8e270b1175b03a189f /os/hal | |
parent | 92c63ec84ff7f855e3a99c0ff78ecb7ae102178e (diff) | |
download | ChibiOS-736e966cf5cd6cae1732d874229f363ecfcb9b3a.tar.gz ChibiOS-736e966cf5cd6cae1732d874229f363ecfcb9b3a.tar.bz2 ChibiOS-736e966cf5cd6cae1732d874229f363ecfcb9b3a.zip |
renamed STM32F3 directories to reflect new models
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7342 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/adc_lld.c (renamed from os/hal/ports/STM32/STM32F30x/adc_lld.c) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/adc_lld.h (renamed from os/hal/ports/STM32/STM32F30x/adc_lld.h) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c (renamed from os/hal/ports/STM32/STM32F30x/ext_lld_isr.c) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/ext_lld_isr.h (renamed from os/hal/ports/STM32/STM32F30x/ext_lld_isr.h) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/hal_lld.c (renamed from os/hal/ports/STM32/STM32F30x/hal_lld.c) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/hal_lld.h (renamed from os/hal/ports/STM32/STM32F30x/hal_lld.h) | 8 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/platform.mk (renamed from os/hal/ports/STM32/STM32F30x/platform.mk) | 12 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_dma.c (renamed from os/hal/ports/STM32/STM32F30x/stm32_dma.c) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_dma.h (renamed from os/hal/ports/STM32/STM32F30x/stm32_dma.h) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_isr.h (renamed from os/hal/ports/STM32/STM32F30x/stm32_isr.h) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_rcc.h (renamed from os/hal/ports/STM32/STM32F30x/stm32_rcc.h) | 4 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32F3xx/stm32_registry.h (renamed from os/hal/ports/STM32/STM32F30x/stm32_registry.h) | 4 |
12 files changed, 30 insertions, 30 deletions
diff --git a/os/hal/ports/STM32/STM32F30x/adc_lld.c b/os/hal/ports/STM32/STM32F3xx/adc_lld.c index 2e875f169..1ceb7dafd 100644 --- a/os/hal/ports/STM32/STM32F30x/adc_lld.c +++ b/os/hal/ports/STM32/STM32F3xx/adc_lld.c @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/adc_lld.c
- * @brief STM32F30x ADC subsystem low level driver source.
+ * @file STM32F3xx/adc_lld.c
+ * @brief STM32F3xx ADC subsystem low level driver source.
*
* @addtogroup ADC
* @{
diff --git a/os/hal/ports/STM32/STM32F30x/adc_lld.h b/os/hal/ports/STM32/STM32F3xx/adc_lld.h index bc8a7c25b..a2631505a 100644 --- a/os/hal/ports/STM32/STM32F30x/adc_lld.h +++ b/os/hal/ports/STM32/STM32F3xx/adc_lld.h @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/adc_lld.h
- * @brief STM32F30x ADC subsystem low level driver header.
+ * @file STM32F3xx/adc_lld.h
+ * @brief STM32F3xx ADC subsystem low level driver header.
*
* @addtogroup ADC
* @{
diff --git a/os/hal/ports/STM32/STM32F30x/ext_lld_isr.c b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c index b16158d8b..1ac1c2c78 100644 --- a/os/hal/ports/STM32/STM32F30x/ext_lld_isr.c +++ b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/ext_lld_isr.c
- * @brief STM32F30x EXT subsystem low level driver ISR code.
+ * @file STM32F3xx/ext_lld_isr.c
+ * @brief STM32F3xx EXT subsystem low level driver ISR code.
*
* @addtogroup EXT
* @{
diff --git a/os/hal/ports/STM32/STM32F30x/ext_lld_isr.h b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.h index 35e379e26..b94c89b2c 100644 --- a/os/hal/ports/STM32/STM32F30x/ext_lld_isr.h +++ b/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.h @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/ext_lld_isr.h
- * @brief STM32F30x EXT subsystem low level driver ISR header.
+ * @file STM32F3xx/ext_lld_isr.h
+ * @brief STM32F3xx EXT subsystem low level driver ISR header.
*
* @addtogroup EXT
* @{
diff --git a/os/hal/ports/STM32/STM32F30x/hal_lld.c b/os/hal/ports/STM32/STM32F3xx/hal_lld.c index 6e5a8db8d..cfa538e2e 100644 --- a/os/hal/ports/STM32/STM32F30x/hal_lld.c +++ b/os/hal/ports/STM32/STM32F3xx/hal_lld.c @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/hal_lld.c
- * @brief STM32F30x HAL subsystem low level driver source.
+ * @file STM32F3xx/hal_lld.c
+ * @brief STM32F3xx HAL subsystem low level driver source.
*
* @addtogroup HAL
* @{
diff --git a/os/hal/ports/STM32/STM32F30x/hal_lld.h b/os/hal/ports/STM32/STM32F3xx/hal_lld.h index d95efd4dd..21f6d4a84 100644 --- a/os/hal/ports/STM32/STM32F30x/hal_lld.h +++ b/os/hal/ports/STM32/STM32F3xx/hal_lld.h @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/hal_lld.h
- * @brief STM32F30x HAL subsystem low level driver header.
+ * @file STM32F3xx/hal_lld.h
+ * @brief STM32F3xx HAL subsystem low level driver header.
* @pre This module requires the following macros to be defined in the
* @p board.h file:
* - STM32_LSECLK.
@@ -546,8 +546,8 @@ /*
* Configuration-related checks.
*/
-#if !defined(STM32F30x_MCUCONF)
-#error "Using a wrong mcuconf.h file, STM32F30x_MCUCONF not defined"
+#if !defined(STM32F3xx_MCUCONF)
+#error "Using a wrong mcuconf.h file, STM32F3xx_MCUCONF not defined"
#endif
/*
diff --git a/os/hal/ports/STM32/STM32F30x/platform.mk b/os/hal/ports/STM32/STM32F3xx/platform.mk index f24aee535..5851cf65b 100644 --- a/os/hal/ports/STM32/STM32F30x/platform.mk +++ b/os/hal/ports/STM32/STM32F3xx/platform.mk @@ -1,9 +1,9 @@ -# List of all the STM32F30x platform files.
+# List of all the STM32F3xx platform files.
PLATFORMSRC = ${CHIBIOS}/os/hal/ports/common/ARMCMx/nvic.c \
- ${CHIBIOS}/os/hal/ports/STM32/STM32F30x/stm32_dma.c \
- ${CHIBIOS}/os/hal/ports/STM32/STM32F30x/hal_lld.c \
- ${CHIBIOS}/os/hal/ports/STM32/STM32F30x/adc_lld.c \
- ${CHIBIOS}/os/hal/ports/STM32/STM32F30x/ext_lld_isr.c \
+ ${CHIBIOS}/os/hal/ports/STM32/STM32F3xx/stm32_dma.c \
+ ${CHIBIOS}/os/hal/ports/STM32/STM32F3xx/hal_lld.c \
+ ${CHIBIOS}/os/hal/ports/STM32/STM32F3xx/adc_lld.c \
+ ${CHIBIOS}/os/hal/ports/STM32/STM32F3xx/ext_lld_isr.c \
${CHIBIOS}/os/hal/ports/STM32/LLD/can_lld.c \
${CHIBIOS}/os/hal/ports/STM32/LLD/ext_lld.c \
${CHIBIOS}/os/hal/ports/STM32/LLD/GPIOv2/pal_lld.c \
@@ -20,7 +20,7 @@ PLATFORMSRC = ${CHIBIOS}/os/hal/ports/common/ARMCMx/nvic.c \ # Required include directories
PLATFORMINC = ${CHIBIOS}/os/hal/ports/common/ARMCMx \
- ${CHIBIOS}/os/hal/ports/STM32/STM32F30x \
+ ${CHIBIOS}/os/hal/ports/STM32/STM32F3xx \
${CHIBIOS}/os/hal/ports/STM32/LLD \
${CHIBIOS}/os/hal/ports/STM32/LLD/GPIOv2 \
${CHIBIOS}/os/hal/ports/STM32/LLD/I2Cv2 \
diff --git a/os/hal/ports/STM32/STM32F30x/stm32_dma.c b/os/hal/ports/STM32/STM32F3xx/stm32_dma.c index 6794e5992..e956fe9e4 100644 --- a/os/hal/ports/STM32/STM32F30x/stm32_dma.c +++ b/os/hal/ports/STM32/STM32F3xx/stm32_dma.c @@ -15,10 +15,10 @@ */
/**
- * @file STM32F30x/stm32_dma.c
+ * @file STM32F3xx/stm32_dma.c
* @brief DMA helper driver code.
*
- * @addtogroup STM32F30x_DMA
+ * @addtogroup STM32F3xx_DMA
* @details DMA sharing helper driver. In the STM32 the DMA streams are a
* shared resource, this driver allows to allocate and free DMA
* streams at runtime in order to allow all the other device
diff --git a/os/hal/ports/STM32/STM32F30x/stm32_dma.h b/os/hal/ports/STM32/STM32F3xx/stm32_dma.h index 4c3d4284c..afb167615 100644 --- a/os/hal/ports/STM32/STM32F30x/stm32_dma.h +++ b/os/hal/ports/STM32/STM32F3xx/stm32_dma.h @@ -15,13 +15,13 @@ */
/**
- * @file STM32F30x/stm32_dma.h
+ * @file STM32F3xx/stm32_dma.h
* @brief DMA helper driver header.
* @note This file requires definitions from the ST header file stm32f30x.h.
* @note This driver uses the new naming convention used for the STM32F2xx
* so the "DMA channels" are referred as "DMA streams".
*
- * @addtogroup STM32F30x_DMA
+ * @addtogroup STM32F3xx_DMA
* @{
*/
diff --git a/os/hal/ports/STM32/STM32F30x/stm32_isr.h b/os/hal/ports/STM32/STM32F3xx/stm32_isr.h index a03f74c06..410c2d793 100644 --- a/os/hal/ports/STM32/STM32F30x/stm32_isr.h +++ b/os/hal/ports/STM32/STM32F3xx/stm32_isr.h @@ -15,10 +15,10 @@ */
/**
- * @file STM32F30x/stm32_isr.h
+ * @file STM32F3xx/stm32_isr.h
* @brief ISR remapper driver header.
*
- * @addtogroup STM32F30x_ISR
+ * @addtogroup STM32F3xx_ISR
* @{
*/
diff --git a/os/hal/ports/STM32/STM32F30x/stm32_rcc.h b/os/hal/ports/STM32/STM32F3xx/stm32_rcc.h index a152dfadd..208c2e6c8 100644 --- a/os/hal/ports/STM32/STM32F30x/stm32_rcc.h +++ b/os/hal/ports/STM32/STM32F3xx/stm32_rcc.h @@ -15,12 +15,12 @@ */
/**
- * @file STM32F30x/stm32_rcc.h
+ * @file STM32F3xx/stm32_rcc.h
* @brief RCC helper driver header.
* @note This file requires definitions from the ST header file
* @p stm32f30x.h.
*
- * @addtogroup STM32F30x_RCC
+ * @addtogroup STM32F3xx_RCC
* @{
*/
diff --git a/os/hal/ports/STM32/STM32F30x/stm32_registry.h b/os/hal/ports/STM32/STM32F3xx/stm32_registry.h index 0ebf0d2e0..1a576e5dd 100644 --- a/os/hal/ports/STM32/STM32F30x/stm32_registry.h +++ b/os/hal/ports/STM32/STM32F3xx/stm32_registry.h @@ -15,8 +15,8 @@ */
/**
- * @file STM32F30x/stm32_registry.h
- * @brief STM32F30x capabilities registry.
+ * @file STM32F3xx/stm32_registry.h
+ * @brief STM32F3xx capabilities registry.
*
* @addtogroup HAL
* @{
|