summaryrefslogtreecommitdiff
path: root/nuttx/configs/lm3s8962-ek/src
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-03-21 11:01:59 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-03-21 11:01:59 -0600
commitde7decc094ff11db426d61b64299c941d77145af (patch)
treea23fe853a0255edb343bdb75cbb55b4d08498abc /nuttx/configs/lm3s8962-ek/src
parent3a1fd703ea9540ef88802b29eb7e5300b9ffee77 (diff)
downloadpx4-nuttx-de7decc094ff11db426d61b64299c941d77145af.tar.gz
px4-nuttx-de7decc094ff11db426d61b64299c941d77145af.tar.bz2
px4-nuttx-de7decc094ff11db426d61b64299c941d77145af.zip
LM3S8962-EK: Rename files for better conformance to naming conventions
Diffstat (limited to 'nuttx/configs/lm3s8962-ek/src')
-rw-r--r--nuttx/configs/lm3s8962-ek/src/Makefile28
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm3s8962ek_internal.h3
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_boot.c (renamed from nuttx/configs/lm3s8962-ek/src/up_boot.c)2
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_ethernet.c (renamed from nuttx/configs/lm3s8962-ek/src/up_ethernet.c)3
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_leds.c (renamed from nuttx/configs/lm3s8962-ek/src/up_leds.c)4
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_nsh.c (renamed from nuttx/configs/lm3s8962-ek/src/up_nsh.c)5
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_oled.c (renamed from nuttx/configs/lm3s8962-ek/src/up_oled.c)5
-rw-r--r--nuttx/configs/lm3s8962-ek/src/lm_ssi.c (renamed from nuttx/configs/lm3s8962-ek/src/up_ssi.c)5
8 files changed, 25 insertions, 30 deletions
diff --git a/nuttx/configs/lm3s8962-ek/src/Makefile b/nuttx/configs/lm3s8962-ek/src/Makefile
index 9181f103e..ceceb0daa 100644
--- a/nuttx/configs/lm3s8962-ek/src/Makefile
+++ b/nuttx/configs/lm3s8962-ek/src/Makefile
@@ -35,30 +35,30 @@
-include $(TOPDIR)/Make.defs
-CFLAGS += -I$(TOPDIR)/sched
+CFLAGS += -I$(TOPDIR)/sched
-ASRCS =
-AOBJS = $(ASRCS:.S=$(OBJEXT))
-CSRCS = up_boot.c up_leds.c up_ethernet.c up_ssi.c
+ASRCS =
+AOBJS = $(ASRCS:.S=$(OBJEXT))
+CSRCS = lm_boot.c lm_leds.c lm_ethernet.c lm_ssi.c
ifeq ($(CONFIG_NSH_ARCHINIT),y)
-CSRCS += up_nsh.c
+CSRCS += lm_nsh.c
endif
ifeq ($(CONFIG_NX_LCDDRIVER),y)
-CSRCS += up_oled.c
+CSRCS += lm_oled.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}" \
- -I "${shell cygpath -w $(ARCH_SRCDIR)/armv7-m}"
+ CFLAGS += -I "${shell cygpath -w $(ARCH_SRCDIR)/chip}" \
+ -I "${shell cygpath -w $(ARCH_SRCDIR)/common}" \
+ -I "${shell cygpath -w $(ARCH_SRCDIR)/armv7-m}"
else
- CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(ARCH_SRCDIR)/armv7-m
+ CFLAGS += -I$(ARCH_SRCDIR)/chip -I$(ARCH_SRCDIR)/common -I$(ARCH_SRCDIR)/armv7-m
endif
all: libboard$(LIBEXT)
diff --git a/nuttx/configs/lm3s8962-ek/src/lm3s8962ek_internal.h b/nuttx/configs/lm3s8962-ek/src/lm3s8962ek_internal.h
index f6148f071..37f385b3a 100644
--- a/nuttx/configs/lm3s8962-ek/src/lm3s8962ek_internal.h
+++ b/nuttx/configs/lm3s8962-ek/src/lm3s8962ek_internal.h
@@ -1,6 +1,5 @@
/************************************************************************************
* configs/lm3s8962-ek/src/lm3s8962ek_internal.h
- * arch/arm/src/board/lm3s8962ek_internal.n
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -48,7 +47,7 @@
#include "tiva_gpio.h"
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* How many SSI modules does this chip support? The LM3S8962 supports 1 SSI
diff --git a/nuttx/configs/lm3s8962-ek/src/up_boot.c b/nuttx/configs/lm3s8962-ek/src/lm_boot.c
index 5119a82dd..4926311c4 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_boot.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_boot.c
@@ -1,5 +1,5 @@
/************************************************************************************
- * configs/lm3s8962-ek/src/up_boot.c
+ * configs/lm3s8962-ek/src/lm_boot.c
*
* Copyright (C) 2010, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/lm3s8962-ek/src/up_ethernet.c b/nuttx/configs/lm3s8962-ek/src/lm_ethernet.c
index 620231330..fb5db9e15 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_ethernet.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_ethernet.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/lm3s8962-ek/src/up_ethernet.c
- * arch/arm/src/board/up_ethernet.c
+ * configs/lm3s8962-ek/src/lm_ethernet.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/lm3s8962-ek/src/up_leds.c b/nuttx/configs/lm3s8962-ek/src/lm_leds.c
index a2945664a..00bd67429 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_leds.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_leds.c
@@ -1,5 +1,5 @@
/****************************************************************************
- * configs/lm3s8962-ek/src/up_leds.c
+ * configs/lm3s8962-ek/src/lm_leds.c
*
* Copyright (C) 2010, 2013, 2015 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -52,7 +52,7 @@
#include "lm3s8962ek_internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG
diff --git a/nuttx/configs/lm3s8962-ek/src/up_nsh.c b/nuttx/configs/lm3s8962-ek/src/lm_nsh.c
index 9063dee4d..6c4938f70 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_nsh.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_nsh.c
@@ -1,6 +1,5 @@
/****************************************************************************
- * config/lm3s8962-ek/src/up_nsh.c
- * arch/arm/src/board/up_nsh.c
+ * config/lm3s8962-ek/src/lm_nsh.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -48,7 +47,7 @@
#include <nuttx/mmcsd.h>
/****************************************************************************
- * Pre-Processor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Configuration ************************************************************/
diff --git a/nuttx/configs/lm3s8962-ek/src/up_oled.c b/nuttx/configs/lm3s8962-ek/src/lm_oled.c
index baf258d2a..cc641adcb 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_oled.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_oled.c
@@ -1,6 +1,5 @@
/****************************************************************************
- * config/lm3s8962-ek/src/up_oled.c
- * arch/arm/src/board/up_oled.c
+ * config/lm3s8962-ek/src/lm_oled.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -52,7 +51,7 @@
#include "lm3s8962ek_internal.h"
/****************************************************************************
- * Pre-Processor Definitions
+ * Pre-processor Definitions
****************************************************************************/
/* Define the CONFIG_LCD_RITDEBUG to enable detailed debug output (stuff you
diff --git a/nuttx/configs/lm3s8962-ek/src/up_ssi.c b/nuttx/configs/lm3s8962-ek/src/lm_ssi.c
index 762de87ea..76cd43b3f 100644
--- a/nuttx/configs/lm3s8962-ek/src/up_ssi.c
+++ b/nuttx/configs/lm3s8962-ek/src/lm_ssi.c
@@ -1,6 +1,5 @@
/************************************************************************************
- * configs/lm3s8962-ek/src/up_ssi.c
- * arch/arm/src/board/up_ssi.c
+ * configs/lm3s8962-ek/src/lm_ssi.c
*
* Copyright (C) 2010 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@@ -57,7 +56,7 @@
#if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */
/************************************************************************************
- * Definitions
+ * Pre-processor Definitions
************************************************************************************/
/* Enables debug output from this file (needs CONFIG_DEBUG too) */