mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 23:03:27 +08:00
configs/pic32-starterkit/nsh converted to use the kconfig-frontends tools
This commit is contained in:
@@ -6714,4 +6714,6 @@
|
|||||||
tools (2014-3-1).
|
tools (2014-3-1).
|
||||||
* configs/mirtoo/nsh: Configuration converted to use the kconfig-frontends
|
* configs/mirtoo/nsh: Configuration converted to use the kconfig-frontends
|
||||||
tools (2014-3-1).
|
tools (2014-3-1).
|
||||||
|
* configs/pic32-starterkit/nsh: Configuration converted to use the
|
||||||
|
kconfig-frontends tools (2014-3-1).
|
||||||
|
|
||||||
|
|||||||
@@ -1091,7 +1091,8 @@ config PIC32MX_ICESEL
|
|||||||
|
|
||||||
config PIC32MX_PROGFLASHWP
|
config PIC32MX_PROGFLASHWP
|
||||||
hex "Program FLASH write protect"
|
hex "Program FLASH write protect"
|
||||||
default 0xff
|
default 0x3ff if ARCH_CHIP_PIC32MX1 || ARCH_CHIP_PIC32MX2
|
||||||
|
default 0xff if !ARCH_CHIP_PIC32MX1 && !ARCH_CHIP_PIC32MX2
|
||||||
---help---
|
---help---
|
||||||
Program FLASH write protect. Default 0xff (disabled)
|
Program FLASH write protect. Default 0xff (disabled)
|
||||||
|
|
||||||
|
|||||||
@@ -1032,21 +1032,30 @@ selected as follow:
|
|||||||
Where <subdir> is one of the following:
|
Where <subdir> is one of the following:
|
||||||
|
|
||||||
nsh:
|
nsh:
|
||||||
====
|
|
||||||
Description.
|
|
||||||
------------
|
|
||||||
This is the NuttShell (NSH) using the NSH startup logic at
|
This is the NuttShell (NSH) using the NSH startup logic at
|
||||||
apps/examples/nsh.
|
apps/examples/nsh.
|
||||||
|
|
||||||
Serial Output.
|
NOTES:
|
||||||
--------------
|
|
||||||
|
1. This configuration uses the mconf-based configuration tool. To
|
||||||
|
change this configurations using that tool, you should:
|
||||||
|
|
||||||
|
a. Build and install the kconfig-mconf tool. See nuttx/README.txt
|
||||||
|
and misc/tools/
|
||||||
|
|
||||||
|
b. Execute 'make menuconfig' in nuttx/ in order to start the
|
||||||
|
reconfiguration process.
|
||||||
|
|
||||||
|
2. Serial Output
|
||||||
|
|
||||||
The OS test produces all of its test output on the serial console.
|
The OS test produces all of its test output on the serial console.
|
||||||
This configuration has UART1 enabled as a serial console. I have
|
This configuration has UART1 enabled as a serial console. I have
|
||||||
been unable to get this UART work on the MEB. But on the Expansion
|
been unable to get this UART work on the MEB. But on the Expansion
|
||||||
I/O board, this maps to RX = J11 pin 41 and TX = J11 pin 43
|
I/O board, this maps to RX = J11 pin 41 and TX = J11 pin 43
|
||||||
|
|
||||||
USB Configuations.
|
3. SB Configurations
|
||||||
-----------------
|
|
||||||
Several USB device configurations can be enabled and included
|
Several USB device configurations can be enabled and included
|
||||||
as NSH built-in built in functions.
|
as NSH built-in built in functions.
|
||||||
|
|
||||||
@@ -1062,30 +1071,23 @@ Where <subdir> is one of the following:
|
|||||||
CONFIG_USBDEV=y : Enable basic USB device support
|
CONFIG_USBDEV=y : Enable basic USB device support
|
||||||
CONFIG_PIC32MX_USBDEV=y : Enable PIC32 USB device support
|
CONFIG_PIC32MX_USBDEV=y : Enable PIC32 USB device support
|
||||||
|
|
||||||
examples/usbterm - This option can be enabled by uncommenting
|
examples/usbterm - This option can be enabled by adding the
|
||||||
the following line in the appconfig file:
|
following line in the NuttX configuration file:
|
||||||
|
|
||||||
CONFIGURED_APPS += examples/usbterm
|
CONFIG_EXAMPLES_USBTERM=y
|
||||||
|
|
||||||
And by enabling one of the USB serial devices:
|
And by enabling one of the USB serial devices:
|
||||||
|
|
||||||
CONFIG_PL2303=y : Enable the Prolifics PL2303 emulation
|
CONFIG_PL2303=y : Enable the Prolifics PL2303 emulation
|
||||||
CONFIG_CDCACM=y : or the CDC/ACM serial driver (not both)
|
CONFIG_CDCACM=y : or the CDC/ACM serial driver (not both)
|
||||||
|
|
||||||
system/cdcacm - The system/cdcacm program can be included as an
|
system/cdcacm - The system/cdcacm program can be included by
|
||||||
function by uncommenting the following line in the appconfig file:
|
adding the following to the configuration file:
|
||||||
|
|
||||||
CONFIGURED_APPS += system/cdcacm
|
|
||||||
|
|
||||||
and defining the following in your .config file:
|
|
||||||
|
|
||||||
CONFIG_CDCACM=y : Enable the CDCACM device
|
CONFIG_CDCACM=y : Enable the CDCACM device
|
||||||
|
CONFIG_EXAMPLES_CDCACM=y
|
||||||
|
|
||||||
system/usbmsc - There are some hooks in the appconfig file
|
Networking Configurations.
|
||||||
to enable the USB mass storage device. However, this device cannot
|
|
||||||
work until support for the SD card is also incorporated.
|
|
||||||
|
|
||||||
Networking Configuations.
|
|
||||||
-------------------------
|
-------------------------
|
||||||
Several Networking configurations can be enabled and included
|
Several Networking configurations can be enabled and included
|
||||||
as NSH built-in built in functions. The following additional
|
as NSH built-in built in functions. The following additional
|
||||||
@@ -1107,14 +1109,18 @@ Where <subdir> is one of the following:
|
|||||||
support simply uncomment the following lines in the appconfig file (before
|
support simply uncomment the following lines in the appconfig file (before
|
||||||
configuring) or in the apps/.config file (after configuring):
|
configuring) or in the apps/.config file (after configuring):
|
||||||
|
|
||||||
|
CONFIG_EXAMPLES_
|
||||||
#CONFIGURED_APPS += netutils/ftpc
|
#CONFIGURED_APPS += netutils/ftpc
|
||||||
|
CONFIG_EXAMPLES_
|
||||||
#CONFIGURED_APPS += examples/ftpc
|
#CONFIGURED_APPS += examples/ftpc
|
||||||
|
|
||||||
3. This example can support an FTP server. In order to build in FTP server
|
3. This example can support an FTP server. In order to build in FTP server
|
||||||
support simply uncomment the following lines in the appconfig file (before
|
support simply uncomment the following lines in the appconfig file (before
|
||||||
configuring) or in the apps/.config file (after configuring):
|
configuring) or in the apps/.config file (after configuring):
|
||||||
|
|
||||||
|
CONFIG_EXAMPLES_
|
||||||
#CONFIGURED_APPS += netutils/ftpd
|
#CONFIGURED_APPS += netutils/ftpd
|
||||||
|
CONFIG_EXAMPLES_
|
||||||
#CONFIGURED_APPS += examples/ftpd
|
#CONFIGURED_APPS += examples/ftpd
|
||||||
|
|
||||||
And enable poll() support in the NuttX configuration file:
|
And enable poll() support in the NuttX configuration file:
|
||||||
@@ -1122,13 +1128,14 @@ Where <subdir> is one of the following:
|
|||||||
CONFIG_DISABLE_POLL=n
|
CONFIG_DISABLE_POLL=n
|
||||||
|
|
||||||
nsh2:
|
nsh2:
|
||||||
=====
|
|
||||||
|
|
||||||
This is an alternative NSH configuration. Without the Expansion I/O board,
|
This is an alternative NSH configuration. Without the Expansion I/O board,
|
||||||
there is no way to connect a serial console. This NSH alternative supports
|
there is no way to connect a serial console. This NSH alternative supports
|
||||||
only a Telnet console. The nsh2 differs from the nsh configuration in the
|
only a Telnet console. The nsh2 differs from the nsh configuration in the
|
||||||
following ways:
|
following ways:
|
||||||
|
|
||||||
|
NOTES:
|
||||||
|
|
||||||
1. Networking is enabled:
|
1. Networking is enabled:
|
||||||
|
|
||||||
CONFIG_NET=y : Enable networking support
|
CONFIG_NET=y : Enable networking support
|
||||||
|
|||||||
@@ -1,115 +0,0 @@
|
|||||||
############################################################################
|
|
||||||
# configs/pic32-starterkit/nsh/appconfig
|
|
||||||
#
|
|
||||||
# Copyright (C) 2012 Gregory Nutt. All rights reserved.
|
|
||||||
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without
|
|
||||||
# modification, are permitted provided that the following conditions
|
|
||||||
# are met:
|
|
||||||
#
|
|
||||||
# 1. Redistributions of source code must retain the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer.
|
|
||||||
# 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer in
|
|
||||||
# the documentation and/or other materials provided with the
|
|
||||||
# distribution.
|
|
||||||
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
||||||
# used to endorse or promote products derived from this software
|
|
||||||
# without specific prior written permission.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
||||||
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
||||||
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
||||||
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
||||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
||||||
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
# POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
#
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
# Path to example in apps/examples containing the user_start entry point
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
CONFIGURED_APPS += examples/nsh
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
# The NSH application library
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
CONFIGURED_APPS += system/readline
|
|
||||||
CONFIGURED_APPS += nshlib
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
# USB device configurations
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_PIC32MX_USBDEV),y)
|
|
||||||
|
|
||||||
# USB Mass Storage Class device configurations
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_USBMSC),y)
|
|
||||||
# Uncomment to enable the system/usbmsc built-in
|
|
||||||
# CONFIGURED_APPS += system/usbmsc
|
|
||||||
endif
|
|
||||||
|
|
||||||
# USB CDC/ACM serial device configurations
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_CDCACM),y)
|
|
||||||
# Uncomment to enable the system/cdcacm built-in
|
|
||||||
# CONFIGURED_APPS += system/cdcacm
|
|
||||||
# Uncomment the following to enable the examples/usbterm built-in
|
|
||||||
# CONFIGURED_APPS += examples/usbterm
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Prolifics PL2303 emulation configurations
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_PL2303),y)
|
|
||||||
# Uncomment the following to enable the examples/usbterm built-in
|
|
||||||
# CONFIGURED_APPS += examples/usbterm
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
# Networking configurations
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
# Networking libraries.
|
|
||||||
# Uncomment netutils/ftpc to include an FTP client library
|
|
||||||
# Uncomment netutils/ftpd to include an FTP server library
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_NET),y)
|
|
||||||
CONFIGURED_APPS += netutils/uiplib
|
|
||||||
CONFIGURED_APPS += netutils/resolv
|
|
||||||
CONFIGURED_APPS += netutils/webclient
|
|
||||||
CONFIGURED_APPS += netutils/tftpc
|
|
||||||
#CONFIGURED_APPS += netutils/ftpc
|
|
||||||
#CONFIGURED_APPS += netutils/ftpd
|
|
||||||
ifeq ($(CONFIG_NSH_TELNET),y)
|
|
||||||
CONFIGURED_APPS += netutils/telnetd
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
# Uncomment examples/ftpc to include the FTP client example
|
|
||||||
# Uncomment examples/ftpd to include the FTP daemon example
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_NET),y)
|
|
||||||
#CONFIGURED_APPS += examples/ftpc
|
|
||||||
#CONFIGURED_APPS += examples/ftpd
|
|
||||||
endif
|
|
||||||
|
|
||||||
############################################################################
|
|
||||||
# Other pplications that can be configured as an NX built-in commands
|
|
||||||
############################################################################
|
|
||||||
|
|
||||||
ifeq ($(CONFIG_I2C),y)
|
|
||||||
CONFIGURED_APPS += system/i2c
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user