summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-07 13:05:12 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-07 13:05:12 -0600
commit6b0b73b36de16cec0cd9583ffbf07b33783dac61 (patch)
treeefdeb27bf168620916d3574174142d1f93c418f6
parent13a2aa5be335bd7d8501c38e2787915ddba9ba59 (diff)
downloadnuttx-6b0b73b36de16cec0cd9583ffbf07b33783dac61.tar.gz
nuttx-6b0b73b36de16cec0cd9583ffbf07b33783dac61.tar.bz2
nuttx-6b0b73b36de16cec0cd9583ffbf07b33783dac61.zip
STM32: Rename pinmap.h files to better reflect the chip naming conventions
-rw-r--r--nuttx/arch/arm/src/stm32/chip.h12
-rw-r--r--nuttx/arch/arm/src/stm32/chip/stm32f103r_pinmap.h (renamed from nuttx/arch/arm/src/stm32/chip/stm32f103re_pinmap.h)10
-rw-r--r--nuttx/arch/arm/src/stm32/chip/stm32f103v_pinmap.h (renamed from nuttx/arch/arm/src/stm32/chip/stm32f103vc_pinmap.h)10
-rw-r--r--nuttx/arch/arm/src/stm32/chip/stm32f103z_pinmap.h (renamed from nuttx/arch/arm/src/stm32/chip/stm32f103ze_pinmap.h)10
-rw-r--r--nuttx/arch/arm/src/stm32/chip/stm32f105v_pinmap.h (renamed from nuttx/arch/arm/src/stm32/chip/stm32f105vb_pinmap.h)10
-rw-r--r--nuttx/arch/arm/src/stm32/chip/stm32f107v_pinmap.h (renamed from nuttx/arch/arm/src/stm32/chip/stm32f107vc_pinmap.h)10
6 files changed, 31 insertions, 31 deletions
diff --git a/nuttx/arch/arm/src/stm32/chip.h b/nuttx/arch/arm/src/stm32/chip.h
index 764b35236..6d304ad12 100644
--- a/nuttx/arch/arm/src/stm32/chip.h
+++ b/nuttx/arch/arm/src/stm32/chip.h
@@ -1,7 +1,7 @@
/************************************************************************************
* arch/arm/src/stm32/chip.h
*
- * Copyright (C) 2009, 2011-2013 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -82,28 +82,28 @@
# elif defined(CONFIG_ARCH_CHIP_STM32F103RE) || \
defined(CONFIG_ARCH_CHIP_STM32F103RB)
-# include "chip/stm32f103re_pinmap.h"
+# include "chip/stm32f103r_pinmap.h"
/* STM32F103VC, STM32F103VD, and STM32F103VE are all provided in 100 pin packages and differ
* only in the available FLASH and SRAM.
*/
# elif defined(CONFIG_ARCH_CHIP_STM32F103VC) || defined(CONFIG_ARCH_CHIP_STM32F103VE)
-# include "chip/stm32f103vc_pinmap.h"
+# include "chip/stm32f103v_pinmap.h"
/* STM32F103ZC, STM32F103ZD, and STM32F103ZE are all provided in 144 pin packages and differ
* only in the available FLASH and SRAM.
*/
# elif defined(CONFIG_ARCH_CHIP_STM32F103ZE)
-# include "chip/stm32f103ze_pinmap.h"
+# include "chip/stm32f103z_pinmap.h"
/* STM32 F105/F107 Connectivity Line */
# elif defined(CONFIG_ARCH_CHIP_STM32F105VB)
-# include "chip/stm32f105vb_pinmap.h"
+# include "chip/stm32f105v_pinmap.h"
# elif defined(CONFIG_ARCH_CHIP_STM32F107VC)
-# include "chip/stm32f107vc_pinmap.h"
+# include "chip/stm32f107v_pinmap.h"
# else
# error "Unsupported STM32F10XXX chip"
# endif
diff --git a/nuttx/arch/arm/src/stm32/chip/stm32f103re_pinmap.h b/nuttx/arch/arm/src/stm32/chip/stm32f103r_pinmap.h
index 042f57f74..89409515a 100644
--- a/nuttx/arch/arm/src/stm32/chip/stm32f103re_pinmap.h
+++ b/nuttx/arch/arm/src/stm32/chip/stm32f103r_pinmap.h
@@ -1,7 +1,7 @@
/************************************************************************************
- * arch/arm/src/stm32/chip/stm32f103re_pinmap.h
+ * arch/arm/src/stm32/chip/stm32f103r_pinmap.h
*
- * Copyright (C) 2009 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2014 Gregory Nutt. All rights reserved.
* Copyright (C) 2011 Uros Platise. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* Uros Platise <uros.platise@isotel.eu>
@@ -35,8 +35,8 @@
*
************************************************************************************/
-#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103RE_PINMAP_H
-#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103RE_PINMAP_H
+#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103R_PINMAP_H
+#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103R_PINMAP_H
/************************************************************************************
* Included Files
@@ -329,4 +329,4 @@
#define GPIO_SDIO_CK (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTC|GPIO_PIN12)
#define GPIO_SDIO_CMD (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTD|GPIO_PIN2)
-#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103RE_PINMAP_H */
+#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103R_PINMAP_H */
diff --git a/nuttx/arch/arm/src/stm32/chip/stm32f103vc_pinmap.h b/nuttx/arch/arm/src/stm32/chip/stm32f103v_pinmap.h
index 9962e2133..c3e28c405 100644
--- a/nuttx/arch/arm/src/stm32/chip/stm32f103vc_pinmap.h
+++ b/nuttx/arch/arm/src/stm32/chip/stm32f103v_pinmap.h
@@ -1,7 +1,7 @@
/************************************************************************************
- * arch/arm/src/stm32/chip/stm32f103vc_pinmap.h
+ * arch/arm/src/stm32/chip/stm32f103v_pinmap.h
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
* Laurent Latil <laurent@latil.nom.fr>
*
@@ -34,8 +34,8 @@
*
************************************************************************************/
-#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103VC_PINMAP_H
-#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103VC_PINMAP_H
+#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103V_PINMAP_H
+#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103V_PINMAP_H
/************************************************************************************
* Included Files
@@ -413,4 +413,4 @@
#define GPIO_PB4 (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTB|GPIO_PIN4)
#endif
-#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103VC_PINMAP_H */
+#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103V_PINMAP_H */
diff --git a/nuttx/arch/arm/src/stm32/chip/stm32f103ze_pinmap.h b/nuttx/arch/arm/src/stm32/chip/stm32f103z_pinmap.h
index df1edbe75..52fba04c4 100644
--- a/nuttx/arch/arm/src/stm32/chip/stm32f103ze_pinmap.h
+++ b/nuttx/arch/arm/src/stm32/chip/stm32f103z_pinmap.h
@@ -1,7 +1,7 @@
/************************************************************************************
- * arch/arm/src/stm32/chip/stm32f103ze_pinmap.h
+ * arch/arm/src/stm32/chip/stm32f103z_pinmap.h
*
- * Copyright (C) 2009, 2011-2012 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011-2012, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -33,8 +33,8 @@
*
************************************************************************************/
-#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103ZE_PINMAP_H
-#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103ZE_PINMAP_H
+#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F103Z_PINMAP_H
+#define __ARCH_ARM_SRC_STM32_CHIP_STM32F103Z_PINMAP_H
/************************************************************************************
* Included Files
@@ -584,5 +584,5 @@
#define GPIO_NAND_NCE2 (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTD|GPIO_PIN7)
#define GPIO_NAND_NCE3 (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTG|GPIO_PIN9)
-#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103ZE_PINMAP_H */
+#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F103Z_PINMAP_H */
diff --git a/nuttx/arch/arm/src/stm32/chip/stm32f105vb_pinmap.h b/nuttx/arch/arm/src/stm32/chip/stm32f105v_pinmap.h
index 710780061..568dd78b3 100644
--- a/nuttx/arch/arm/src/stm32/chip/stm32f105vb_pinmap.h
+++ b/nuttx/arch/arm/src/stm32/chip/stm32f105v_pinmap.h
@@ -1,7 +1,7 @@
/************************************************************************************
- * arch/arm/src/stm32/chip/stm32f105vb_pinmap.h
+ * arch/arm/src/stm32/chip/stm32f105v_pinmap.h
*
- * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -33,8 +33,8 @@
*
************************************************************************************/
-#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F105VB_PINMAP_H
-#define __ARCH_ARM_SRC_STM32_CHIP_STM32F105VB_PINMAP_H
+#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F105V_PINMAP_H
+#define __ARCH_ARM_SRC_STM32_CHIP_STM32F105V_PINMAP_H
/************************************************************************************
* Included Files
@@ -409,4 +409,4 @@
#define GPIO_PB4 (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTB|GPIO_PIN4)
#endif
-#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F105VB_PINMAP_H */
+#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F105V_PINMAP_H */
diff --git a/nuttx/arch/arm/src/stm32/chip/stm32f107vc_pinmap.h b/nuttx/arch/arm/src/stm32/chip/stm32f107v_pinmap.h
index 450cc6b06..385da0099 100644
--- a/nuttx/arch/arm/src/stm32/chip/stm32f107vc_pinmap.h
+++ b/nuttx/arch/arm/src/stm32/chip/stm32f107v_pinmap.h
@@ -1,7 +1,7 @@
/************************************************************************************
- * arch/arm/src/stm32/chip/stm32f107vc_pinmap.h
+ * arch/arm/src/stm32/chip/stm32f107v_pinmap.h
*
- * Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2009, 2011, 2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -33,8 +33,8 @@
*
************************************************************************************/
-#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F107VC_PINMAP_H
-#define __ARCH_ARM_SRC_STM32_CHIP_STM32F107VC_PINMAP_H
+#ifndef __ARCH_ARM_SRC_STM32_CHIP_STM32F107V_PINMAP_H
+#define __ARCH_ARM_SRC_STM32_CHIP_STM32F107V_PINMAP_H
/************************************************************************************
* Included Files
@@ -415,4 +415,4 @@
#define GPIO_PB4 (GPIO_ALT|GPIO_CNF_AFPP|GPIO_MODE_50MHz|GPIO_PORTB|GPIO_PIN4)
#endif
-#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F107VC_PINMAP_H */
+#endif /* __ARCH_ARM_SRC_STM32_CHIP_STM32F107V_PINMAP_H */