Nucleus 2G: Rename files for better conformance to naming conventions
This commit is contained in:
parent
2b0e9d40c0
commit
78ad6050d1
@ -38,12 +38,12 @@
|
|||||||
CFLAGS += -I$(TOPDIR)/sched
|
CFLAGS += -I$(TOPDIR)/sched
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS = up_boot.c up_leds.c up_ssp.c up_outputs.c
|
CSRCS = lpc17_boot.c lpc17_leds.c lpc17_ssp.c lpc17_outputs.c
|
||||||
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
ifeq ($(CONFIG_NSH_ARCHINIT),y)
|
||||||
CSRCS += up_nsh.c
|
CSRCS += lpc17_nsh.c
|
||||||
endif
|
endif
|
||||||
ifeq ($(CONFIG_USBMSC),y)
|
ifeq ($(CONFIG_USBMSC),y)
|
||||||
CSRCS += up_usbmsc.c
|
CSRCS += lpc17_usbmsc.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* configs/nucleus2g/src/up_boot.c
|
* configs/nucleus2g/src/lpc17_boot.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2012, 2015 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2012, 2015 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* configs/nucleus2g/src/up_leds.c
|
* configs/nucleus2g/src/lpc17_leds.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
@ -1,6 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* config/nucleus2g/src/up_nsh.c
|
* config/nucleus2g/src/lpc17_nsh.c
|
||||||
* arch/arm/src/board/up_nsh.c
|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010-2011, 2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010-2011, 2013 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@ -48,7 +47,7 @@
|
|||||||
#include <nuttx/mmcsd.h>
|
#include <nuttx/mmcsd.h>
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Pre-Processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/* Configuration ************************************************************/
|
/* Configuration ************************************************************/
|
@ -1,6 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* configs/nucleus2g/src/up_outputs.c
|
* configs/nucleus2g/src/lpc17_outputs.c
|
||||||
* arch/arm/src/board/up_outputs.c
|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Hal Glenn. All rights reserved.
|
* Copyright (C) 2012 Hal Glenn. All rights reserved.
|
||||||
* Author: Hal Glenn <hglenn@2g-eng.com>
|
* Author: Hal Glenn <hglenn@2g-eng.com>
|
@ -1,6 +1,5 @@
|
|||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* configs/nucleus2g/src/up_ssp.c
|
* configs/nucleus2g/src/lpc17_ssp.c
|
||||||
* arch/arm/src/board/up_ssp.c
|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2013 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@ -56,7 +55,7 @@
|
|||||||
#if defined(CONFIG_LPC17_SSP0) || defined(CONFIG_LPC17_SSP1)
|
#if defined(CONFIG_LPC17_SSP0) || defined(CONFIG_LPC17_SSP1)
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* Definitions
|
* Pre-processor Definitions
|
||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
/* Enables debug output from this file (needs CONFIG_DEBUG too) */
|
/* Enables debug output from this file (needs CONFIG_DEBUG too) */
|
@ -1,5 +1,5 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* configs/nucleus2g/src/up_usbmsc.c
|
* configs/nucleus2g/src/lpc17_usbmsc.c
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2013 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2013 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
#include <nuttx/mmcsd.h>
|
#include <nuttx/mmcsd.h>
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Pre-Processor Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/* Configuration ************************************************************/
|
/* Configuration ************************************************************/
|
@ -1,6 +1,5 @@
|
|||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* configs/nucleus2g/src/nucleus2g_internal.h
|
* configs/nucleus2g/src/nucleus2g_internal.h
|
||||||
* arch/arm/src/board/nucleus2g_internal.n
|
|
||||||
*
|
*
|
||||||
* Copyright (C) 2010, 2012 Gregory Nutt. All rights reserved.
|
* Copyright (C) 2010, 2012 Gregory Nutt. All rights reserved.
|
||||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
@ -45,7 +44,7 @@
|
|||||||
#include <nuttx/compiler.h>
|
#include <nuttx/compiler.h>
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* Definitions
|
* Pre-processor Definitions
|
||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
/* NUCLEUS-2G GPIO Pin Definitions **************************************************/
|
/* NUCLEUS-2G GPIO Pin Definitions **************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user