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

This commit is contained in:
Gregory Nutt 2015-03-21 09:20:56 -06:00
parent 0cd01961df
commit 834b230494
6 changed files with 21 additions and 22 deletions

View File

@ -40,14 +40,14 @@ CFLAGS += -I$(TOPDIR)/sched
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_spi.c
CSRCS = stm32_boot.c stm32_spi.c
ifeq ($(CONFIG_CAN),y)
CSRCS += up_can.c
CSRCS += stm32_can.c
endif
ifeq ($(CONFIG_ENCX24J600),y)
CSRCS += up_encx24j600.c
CSRCS += stm32_encx24j600.c
endif
COBJS = $(CSRCS:.c=$(OBJEXT))

View File

@ -44,7 +44,7 @@
#include <stdint.h>
/******************************************************************************
* Definitions
* Pre-processor Definitions
******************************************************************************/
/* Olimex MOD-ENC624J600 Module

View File

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

View File

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

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/olimex-stm32-p107/src/up_encx24j600.c
* configs/olimex-stm32-p107/src/stm32_encx24j600.c
*
* Copyright (C) 2012 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -56,7 +56,7 @@
#ifdef CONFIG_ENCX24J600
/****************************************************************************
* Definitions
* Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/

View File

@ -1,5 +1,5 @@
/************************************************************************************
* configs/olimex-stm32-p107/src/up_spi.c
* configs/olimex-stm32-p107/src/stm32_spi.c
*
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -54,7 +54,7 @@
#if defined(CONFIG_STM32_SPI3)
/************************************************************************************
* Definitions
* Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */