summaryrefslogtreecommitdiff
path: root/nuttx/configs/teensy
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-09-05 08:07:03 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-09-05 08:07:03 -0600
commit39b2be1e80f5e15b431456a7ab18ab2edf05a3a1 (patch)
treefd7939068ef642b851d41a52ed2653ca71fe7a3d /nuttx/configs/teensy
parent63490f1443d979623b3cf06232e34413506dfc94 (diff)
downloadnuttx-39b2be1e80f5e15b431456a7ab18ab2edf05a3a1.tar.gz
nuttx-39b2be1e80f5e15b431456a7ab18ab2edf05a3a1.tar.bz2
nuttx-39b2be1e80f5e15b431456a7ab18ab2edf05a3a1.zip
Rename examples/usbstorage to examples/usbmsc. From CCTSAO
Diffstat (limited to 'nuttx/configs/teensy')
-rw-r--r--nuttx/configs/teensy/README.txt6
-rw-r--r--nuttx/configs/teensy/hello/defconfig2
-rw-r--r--nuttx/configs/teensy/usbmsc/Make.defs (renamed from nuttx/configs/teensy/usbstorage/Make.defs)6
-rw-r--r--nuttx/configs/teensy/usbmsc/appconfig (renamed from nuttx/configs/teensy/usbstorage/appconfig)4
-rwxr-xr-xnuttx/configs/teensy/usbmsc/defconfig (renamed from nuttx/configs/teensy/usbstorage/defconfig)4
-rwxr-xr-xnuttx/configs/teensy/usbmsc/ld.script (renamed from nuttx/configs/teensy/usbstorage/ld.script)2
-rwxr-xr-xnuttx/configs/teensy/usbmsc/setenv.sh (renamed from nuttx/configs/teensy/usbstorage/setenv.sh)2
7 files changed, 13 insertions, 13 deletions
diff --git a/nuttx/configs/teensy/README.txt b/nuttx/configs/teensy/README.txt
index 51dcbd553..897d3b234 100644
--- a/nuttx/configs/teensy/README.txt
+++ b/nuttx/configs/teensy/README.txt
@@ -536,15 +536,15 @@ Where <subdir> is one of the following:
to get it to fit within AVR memory constraints, it will probably be
necessary to disable some OS features.
- usbstorage:
+ usbmsc:
This configuration directory exercises the USB mass storage
- class driver at apps/examples/usbstorage. See apps/examples/README.txt
+ class driver at apps/examples/usbmsc. See apps/examples/README.txt
for more information. NOTE: THIS CONFIGURATION HAS NOT YET BEEN
DEBUGGED AND DOES NOT WORK!!! ISSUES: (1) THE SPI DRIVER IS UNTESTED,
(2) THE USB DRIVER IS UNTESTED, AND (3) THE RAM USAGE MIGHT BE EXCESSIVE.
Update 7/11: (1) The SPI/SD driver has been verified, however, (2) I
- believe that the current teensy/usbstorage configuration uses too
+ believe that the current teensy/usbmsc configuration uses too
much SRAM for the system to behave sanely. A lower memory footprint
version of the mass storage driver will be required before this can
be debugged
diff --git a/nuttx/configs/teensy/hello/defconfig b/nuttx/configs/teensy/hello/defconfig
index 77e69d0b5..1cb97f3cd 100644
--- a/nuttx/configs/teensy/hello/defconfig
+++ b/nuttx/configs/teensy/hello/defconfig
@@ -393,7 +393,7 @@ CONFIG_EXAMPLES_USBSERIAL_TRACECONTROLLER=n
CONFIG_EXAMPLES_USBSERIAL_TRACEINTERRUPTS=n
#
-# Settings for examples/usbstorage
+# Settings for examples/usbmsc
#
CONFIG_EXAMPLES_USBMSC_NLUNS=1
CONFIG_EXAMPLES_USBMSC_DEVMINOR1=0
diff --git a/nuttx/configs/teensy/usbstorage/Make.defs b/nuttx/configs/teensy/usbmsc/Make.defs
index da316dd26..9948f9655 100644
--- a/nuttx/configs/teensy/usbstorage/Make.defs
+++ b/nuttx/configs/teensy/usbmsc/Make.defs
@@ -1,5 +1,5 @@
############################################################################
-# configs/teensy/usbstorage/Make.defs
+# configs/teensy/usbmsc/Make.defs
#
# Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
@@ -44,13 +44,13 @@ ifeq ($(WINTOOL),y)
MKDEP = $(TOPDIR)/tools/mknulldeps.sh
ARCHINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}"
ARCHXXINCLUDES = $(ARCHINCLUDES) "${shell cygpath -w $(TOPDIR)/include/cxx}"
- ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/usbstorage/ld.script}"
+ ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/usbmsc/ld.script}"
else
# Linux/Cygwin-native toolchain
MKDEP = $(TOPDIR)/tools/mkdeps.sh
ARCHINCLUDES = -I. -isystem "$(TOPDIR)/include"
ARCHXXINCLUDES = $(ARCHINCLUDES) -isystem "$(TOPDIR)/include/cxx"
- ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/usbstorage/ld.script
+ ARCHSCRIPT = -T$(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/usbmsc/ld.script
endif
CC = $(CROSSDEV)gcc
diff --git a/nuttx/configs/teensy/usbstorage/appconfig b/nuttx/configs/teensy/usbmsc/appconfig
index 76df13884..0e5057ce4 100644
--- a/nuttx/configs/teensy/usbstorage/appconfig
+++ b/nuttx/configs/teensy/usbmsc/appconfig
@@ -1,5 +1,5 @@
############################################################################
-# configs/teensy/usbstorage/appconfig
+# configs/teensy/usbmsc/appconfig
#
# Copyright (C) 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
@@ -35,5 +35,5 @@
# Path to example in apps/examples containing the user_start entry point
-CONFIGURED_APPS += examples/usbstorage
+CONFIGURED_APPS += examples/usbmsc
diff --git a/nuttx/configs/teensy/usbstorage/defconfig b/nuttx/configs/teensy/usbmsc/defconfig
index 16bd23cda..adc626bc4 100755
--- a/nuttx/configs/teensy/usbstorage/defconfig
+++ b/nuttx/configs/teensy/usbmsc/defconfig
@@ -1,5 +1,5 @@
############################################################################
-# configs/teensy/usbstorage/defconfig
+# configs/teensy/usbmsc/defconfig
#
# Copyright (C) 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
@@ -412,7 +412,7 @@ CONFIG_EXAMPLES_USBSERIAL_TRACECONTROLLER=n
CONFIG_EXAMPLES_USBSERIAL_TRACEINTERRUPTS=n
#
-# Settings for examples/usbstorage
+# Settings for examples/usbmsc
#
CONFIG_EXAMPLES_USBMSC_NLUNS=1
CONFIG_EXAMPLES_USBMSC_DEVMINOR1=0
diff --git a/nuttx/configs/teensy/usbstorage/ld.script b/nuttx/configs/teensy/usbmsc/ld.script
index 54163f002..9ee8e9178 100755
--- a/nuttx/configs/teensy/usbstorage/ld.script
+++ b/nuttx/configs/teensy/usbmsc/ld.script
@@ -1,5 +1,5 @@
/**************************************************************************************
- * configs/teensy/usbstorage/ld.script
+ * configs/teensy/usbmsc/ld.script
*
* Copyright (C) 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
diff --git a/nuttx/configs/teensy/usbstorage/setenv.sh b/nuttx/configs/teensy/usbmsc/setenv.sh
index 2f80197c3..e248c5f71 100755
--- a/nuttx/configs/teensy/usbstorage/setenv.sh
+++ b/nuttx/configs/teensy/usbmsc/setenv.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-# configs/teensy/usbstorage/setenv.sh
+# configs/teensy/usbmsc/setenv.sh
#
# Copyright (C) 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>