DMEO9S12NE64: Rename files for better conformance to naming conventions

This commit is contained in:
Gregory Nutt 2015-03-21 14:02:26 -06:00
parent 457552e15d
commit dd79981cf7
7 changed files with 21 additions and 26 deletions

View File

@ -35,26 +35,26 @@
-include $(TOPDIR)/Make.defs
CFLAGS += -I$(TOPDIR)/sched
CFLAGS += -I$(TOPDIR)/sched
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
ASRCS =
AOBJS = $(ASRCS:.S=$(OBJEXT))
CSRCS = up_boot.c up_leds.c up_buttons.c up_spi.c
CSRCS = m9s12_boot.c m9s12_leds.c m9s12_buttons.c m9s12_spi.c
ifeq ($(CONFIG_NSH_ARCHINIT),y)
CSRCS += up_nsh.c
CSRCS += m9s12_nsh.c
endif
COBJS = $(CSRCS:.c=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
ARCH_SRCDIR = $(TOPDIR)/arch/$(CONFIG_ARCH)/src
ifeq ($(WINTOOL),y)
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}"
CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
-I "${shell cygpath -w $(ARCH_SRCDIR)/common}"
else
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common
CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common
endif
all: libboard$(LIBEXT)

View File

@ -1,6 +1,5 @@
/************************************************************************************
* configs/demo9s12ne64/src/demo9s12ne64.h
* arch/arm/src/board/demo9s12ne64.n
*
* Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -45,7 +44,7 @@
#include <nuttx/compiler.h>
/************************************************************************************
* Definitions
* Pre-processor Definitions
************************************************************************************/
/* DEMO9S12NE64 GPIOs ***************************************************************/
@ -72,9 +71,7 @@
*
************************************************************************************/
extern void weak_function hcs12_spiinitialize(void);
void weak_function hcs12_spiinitialize(void);
#endif /* __ASSEMBLY__ */
#endif /* __CONFIGS_DEMO9S12NE64_SRC_DEMO9S12NE64_H */

View File

@ -1,5 +1,5 @@
/************************************************************************************
* configs/demo9s12ne64/src/up_boot.c
* configs/demo9s12ne64/src/m9s12_boot.c
*
* Copyright (C) 2009, 2011, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/demo9s12ne64/src/up_leds.c
* configs/demo9s12ne64/src/m9s12_buttons.c
*
* Copyright (C) 2009, 2014-2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,5 +1,5 @@
/****************************************************************************
* configs/demo9s12ne64/src/up_leds.c
* configs/demo9s12ne64/src/m9s12_leds.c
*
* Copyright (C) 2009, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>

View File

@ -1,6 +1,5 @@
/****************************************************************************
* config/demo9s12ne64/src/up_nsh.c
* arch/arm/src/board/up_nsh.c
* config/demo9s12ne64/src/m9s12_nsh.c
*
* Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -47,7 +46,7 @@
#include "demo9s12ne64.h"
/****************************************************************************
* Pre-Processor Definitions
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************

View File

@ -1,6 +1,5 @@
/************************************************************************************
* configs/demo9s12ne64/src/up_spi.c
* arch/arm/src/board/up_spi.c
* configs/demo9s12ne64/src/m9s12_spi.c
*
* Copyright (C) 2009 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -52,7 +51,7 @@
#if defined(CONFIG_HCS12_SPI)
/************************************************************************************
* Definitions
* Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */