Olimex STM32 P207: Rename files for better conformance to naming conventions

This commit is contained in:
Gregory Nutt 2015-03-21 09:17:03 -06:00
parent 22ffea1d56
commit 0cd01961df
11 changed files with 35 additions and 41 deletions

View File

@ -40,32 +40,32 @@ CFLAGS += -I$(TOPDIR)/sched
ASRCS = ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT)) AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_cxxinitialize.c CSRCS = stm32_boot.c stm32_cxxinitialize.c
ifeq ($(CONFIG_ARCH_LEDS),y) ifeq ($(CONFIG_ARCH_LEDS),y)
CSRCS += up_autoleds.c CSRCS += stm32_autoleds.c
else else
CSRCS += up_userleds.c CSRCS += stm32_userleds.c
endif endif
ifeq ($(CONFIG_ARCH_BUTTONS),y) ifeq ($(CONFIG_ARCH_BUTTONS),y)
CSRCS += up_buttons.c CSRCS += stm32_buttons.c
endif endif
ifeq ($(CONFIG_STM32_OTGFS),y) ifeq ($(CONFIG_STM32_OTGFS),y)
CSRCS += up_usb.c CSRCS += stm32_usb.c
endif endif
ifeq ($(CONFIG_NSH_LIBRARY),y) ifeq ($(CONFIG_NSH_LIBRARY),y)
CSRCS += up_nsh.c CSRCS += stm32_nsh.c
endif endif
ifeq ($(CONFIG_ADC),y) ifeq ($(CONFIG_ADC),y)
CSRCS += up_adc.c CSRCS += stm32_adc.c
endif endif
ifeq ($(CONFIG_CAN),y) ifeq ($(CONFIG_CAN),y)
CSRCS += up_can.c CSRCS += stm32_can.c
endif endif
COBJS = $(CSRCS:.c=$(OBJEXT)) COBJS = $(CSRCS:.c=$(OBJEXT))

View File

@ -45,7 +45,7 @@
#include <stdint.h> #include <stdint.h>
/****************************************************************************** /******************************************************************************
* Definitions * Pre-processor Definitions
******************************************************************************/ ******************************************************************************/
/* Olimex-STM32-P207 GPIOs ****************************************************/ /* Olimex-STM32-P207 GPIOs ****************************************************/

View File

@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/olimex-stm32-p207/src/up_adc.c * configs/olimex-stm32-p207/src/stm32_adc.c
* arch/arm/src/board/up_adc.c
* *
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -51,7 +50,7 @@
#ifdef CONFIG_ADC #ifdef CONFIG_ADC
/************************************************************************************ /************************************************************************************
* Definitions * Pre-processor Definitions
************************************************************************************/ ************************************************************************************/
/* Configuration ********************************************************************/ /* Configuration ********************************************************************/

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/olimex-stm32-p207/src/up_autoleds.c * configs/olimex-stm32-p207/src/stm32_autoleds.c
* *
* Copyright (C) 2011-2013, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2011-2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/olimex-stm32-p207/src/up_boot.c * configs/olimex-stm32-p207/src/stm32_boot.c
* *
* Copyright (C) 2009, 2012, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2009, 2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -48,7 +48,7 @@
#include "olimex-stm32-p207.h" #include "olimex-stm32-p207.h"
/************************************************************************************ /************************************************************************************
* Definitions * Pre-processor Definitions
************************************************************************************/ ************************************************************************************/
/************************************************************************************ /************************************************************************************

View File

@ -1,5 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/olimex-stm32-p207/src/board_buttons.c * configs/olimex-stm32-p207/src/stm32_buttons.c
* *
* Copyright (C) 2011-2012, 2015 Gregory Nutt. All rights reserved. * Copyright (C) 2011-2012, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/olimex-stm32-p207/src/up_can.c * configs/olimex-stm32-p207/src/stm32_can.c
* arch/arm/src/board/up_can.c
* *
* Copyright (C) 2011-2012 Gregory Nutt. All rights reserved. * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/olimex-stm32-p207/src/up_cxxinitialize.c * configs/olimex-stm32-p207/src/stm32_cxxinitialize.c
* arch/arm/src/board/up_cxxinitialize.c
* *
* Copyright (C) 2012 Gregory Nutt. All rights reserved. * Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -50,7 +49,7 @@
#if defined(CONFIG_HAVE_CXX) && defined(CONFIG_HAVE_CXXINITIALIZE) #if defined(CONFIG_HAVE_CXX) && defined(CONFIG_HAVE_CXXINITIALIZE)
/************************************************************************************ /************************************************************************************
* Definitions * Pre-processor Definitions
************************************************************************************/ ************************************************************************************/
/* Debug ****************************************************************************/ /* Debug ****************************************************************************/
/* Non-standard debug that may be enabled just for testing the static constructors */ /* Non-standard debug that may be enabled just for testing the static constructors */

View File

@ -1,6 +1,5 @@
/**************************************************************************** /****************************************************************************
* config/olimex-stm32-p207/src/up_nsh.c * config/olimex-stm32-p207/src/stm32_nsh.c
* arch/arm/src/board/up_nsh.c
* *
* Copyright (C) 2012 Gregory Nutt. All rights reserved. * Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -57,7 +56,7 @@
#include "olimex-stm32-p207.h" #include "olimex-stm32-p207.h"
/**************************************************************************** /****************************************************************************
* Pre-Processor Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* Configuration ************************************************************/ /* Configuration ************************************************************/

View File

@ -1,6 +1,5 @@
/************************************************************************************ /************************************************************************************
* configs/olimex-stm32-p207/src/up_usbdev.c * configs/olimex-stm32-p207/src/stm32_usb.c
* arch/arm/src/board/up_usbdev.c
* *
* Copyright (C) 2012-2013 Gregory Nutt. All rights reserved. * Copyright (C) 2012-2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/**************************************************************************** /****************************************************************************
* configs/olimex-stm32-p207/src/up_leds.c * configs/olimex-stm32-p207/src/stm32_userleds.c
* arch/arm/src/board/up_leds.c
* *
* Copyright (C) 2011 Gregory Nutt. All rights reserved. * Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org> * Author: Gregory Nutt <gnutt@nuttx.org>
@ -50,7 +49,7 @@
#ifndef CONFIG_ARCH_LEDS #ifndef CONFIG_ARCH_LEDS
/**************************************************************************** /****************************************************************************
* Definitions * Pre-processor Definitions
****************************************************************************/ ****************************************************************************/
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG /* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG