Prep for 6.0 release
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3408 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
bf55d8f442
commit
349f6aae93
@ -1553,7 +1553,7 @@
|
||||
* configs/olimex-lpc1766stk/slip-httpd - An example that uses SLIP to
|
||||
provide a serial-port based THTTPD web server.
|
||||
|
||||
5.20 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
6.0 2011-03-21 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* lib/lib_fopen() -- fopen() was not returning the correct errno value
|
||||
when the underlying open() failed.
|
||||
@ -1587,7 +1587,7 @@
|
||||
incorporate code taken from the Linux kernel. That changes the
|
||||
licensing on this module to GPL. To avoid licensing contamination,
|
||||
this driver was moved to misc/drivers/rtl8187x *prior* to adding
|
||||
and of the GPL log. There is an INSTALL.sh script at the location
|
||||
any of the GPL logic. There is an INSTALL.sh script at the location
|
||||
where the GPL driver(s) can be re-installed into the NuttX source
|
||||
tree. By re-installing the driver, you agree to the GPL licsensing
|
||||
and all of its implications.
|
||||
@ -1595,11 +1595,14 @@
|
||||
configs/<board>/<config>/appdir to apps/.config and to simply the
|
||||
application configuration logic.
|
||||
* examples/nsh and apps/nshlib - Move the core NuttShell (NSH) logic
|
||||
out of the exemples directory and into the apps/directory where
|
||||
out of the exemples directory and into the apps/ directory where
|
||||
it belongs.
|
||||
* apps/Makefile and configs/*/appconfig - Use '=' as the delimiter
|
||||
instead of '/' so that sub-directories in apps/ can be used.
|
||||
* apps/vsn - Move all VSN apps to apps/vsn.
|
||||
* nuttx/examples moved to apps/examples
|
||||
|
||||
6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
<tr align="center" bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||
<p>Last Updated: March 20, 2011</p>
|
||||
<p>Last Updated: March 21, 2011</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -807,77 +807,68 @@
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><b>nuttx-5.19 Release Notes</b>:
|
||||
<p><b>nuttx-6.0 Release Notes</b>:
|
||||
|
||||
<p>
|
||||
The 66<sup>th</sup> release of NuttX, Version 5.19, was made on March 12, 2011 and is available for download from the
|
||||
The 67<sup>th</sup> release of NuttX, Version 6.0, was made on March 21, 2011 and is available for download from the
|
||||
<a href="http://sourceforge.net/projects/nuttx/files/">SourceForge</a> website.
|
||||
The change log associated with the release is available <a href="#currentrelease">here</a>.
|
||||
Unreleased changes after this release are available in SVN.
|
||||
These unreleased changes are listed <a href="#pendingchanges">here</a>.
|
||||
</p>
|
||||
<p>
|
||||
This release includes several new features in various states of integration and maturity:
|
||||
The version number of this release was bumped from 5.19 to 6.0.
|
||||
A change in the major revision number is used to reflect an incompatibility with previous versions.
|
||||
In this release, the NuttX core OS functionality has been separated from NuttX application-related functionality.
|
||||
These are provided as separate tarballs:
|
||||
</p>
|
||||
<ul>
|
||||
|
||||
<li><code>nuttx-6.0.tar.gz</code>, and</li>
|
||||
<li><code>apps-6.0.tar.gz</code></li>
|
||||
</ul>
|
||||
<p>
|
||||
The purpose of this separation is both to better organize and modularize the NuttX source tree,
|
||||
but also to provide better support for incorporation of end-user applications with Nuttx.
|
||||
</p>
|
||||
<p>
|
||||
The incompatibily results from the changes to the board configuration logic needed to supported the separable application.
|
||||
The major changes to the configuration include:
|
||||
</p>
|
||||
<ul>
|
||||
<li><code>CONFIG_APPS_DIR</code> - This should not, typically be set.
|
||||
The default is <code>../apps</code>.
|
||||
This should only be set if you have a custom, product-specific application directory in some different location.
|
||||
</li>
|
||||
<li>
|
||||
<b>486SX QEMU port</b>.
|
||||
This port supports the Intel 486SX architecture using the QEMU simulator.
|
||||
Initial functionality is in place a partially tested.
|
||||
There are still some outstanding issues with timer interrupts.
|
||||
A large part of the i486 logic was contributed by Biff of
|
||||
<a href="http://bifferos.bizhat.com">Bifferboard</a> fame.
|
||||
</li>
|
||||
<li>
|
||||
<b>Platform specific application support</b>.
|
||||
A new <code>apps/</code> directory appears in this port.
|
||||
This <code>apps/</code> directory provides a mechanism for applications using NuttX to have a highly customizable initialization process.
|
||||
It supports a set of end-user applications than can be executed
|
||||
(1) standalone so you can have a fully customizable application startup, or
|
||||
(2) on top of NSH.
|
||||
Think of it this way:
|
||||
In a buckled-up embedded application, your end-user programs will probably have their own dedicated start-up logic.
|
||||
But, during development, you might want to have you applications available and executable from the NSH command line.
|
||||
This <code>apps/</code> add-on (and NSH hooks) was contributed by Uros Platise to accomplish just that.
|
||||
</li>
|
||||
<li>
|
||||
<b>Custom NSH <code>/etc/init.d/rcS</code> File</b>.
|
||||
NSH was also extended to support application specific ROMFS <code>/etc/init.d/rcS</code> start-up scripts.
|
||||
This feature, as well, as all of the above-mentioned <code>apps/</code> directory support was contributed by Uros Platise
|
||||
</li>
|
||||
<li>
|
||||
Additional NSH improvements and bug fixes. See the Changelog for details.
|
||||
</li>
|
||||
<li>
|
||||
<b>SLIP</b>.
|
||||
This release also provides a new SLIP network driver.
|
||||
This driver should support point-to-point network communications to a host using TCP/IP or UDP.
|
||||
This driver is code complete, but not tested in this release.
|
||||
</li>
|
||||
<li>
|
||||
<b>RAMTROM FRAM Driver</b>.
|
||||
New RAMTRON FRAM driver (contributed by Uros Platise)
|
||||
</li>
|
||||
<li>
|
||||
<b>16550 UART Driver</b>.
|
||||
New generic 16550 UART driver.
|
||||
</li>
|
||||
<li>
|
||||
<b>Cortex-M3 Power improvements</b>.
|
||||
The Cortex-M3 can now waits for Interrupt (WFI) in idle loop for reduced power consumption
|
||||
(LPC17xx and STM32 only - contributed by Uros Platise))
|
||||
</li>
|
||||
<li>
|
||||
<b><code>waitpid()</code></b>.
|
||||
New <code>waitpid()</code> system interface.
|
||||
</li>
|
||||
<li>
|
||||
<b>Bugfixes</b>.
|
||||
Additional bugfixes: pipes, stdint.h, STM32 SDIO and SPI drivers
|
||||
<li><code>appconfig</code> - Each board configuration now requires a new file called <code>appconfig</code>.
|
||||
As its name suggests, this file provides new configuration information needed by the logic in <code>../apps</code>.
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
In addition to this major reorganization in the directory structure, this release also includes some important extensions to existing features and
|
||||
some important bugfixes.
|
||||
These include:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
The SLIP driver was been well debugged and significantly re-designed.
|
||||
Now you can have an Ethernet connection to you board even if you have no Ethernet hardware.
|
||||
How cool is that?
|
||||
</li>
|
||||
<li>
|
||||
The QEMU i486 port is now functional.
|
||||
It has also been reported to work on the <a href="http://bifferos.bizhat.com/">Bifferboard</a>.
|
||||
</li>
|
||||
<li>
|
||||
And extensions to the uIP driver interface, and
|
||||
</li>
|
||||
<li>
|
||||
Bug fixes to <code>fopen()</code> and STM32 GPIO configuration
|
||||
</li>
|
||||
<li>
|
||||
</ul>
|
||||
<p>
|
||||
Please see the ChangeLog for details.
|
||||
</p>
|
||||
|
||||
<table width ="100%">
|
||||
<tr bgcolor="#e4e4e4">
|
||||
@ -1452,14 +1443,17 @@
|
||||
<td><br></td>
|
||||
<td>
|
||||
<p>
|
||||
<b>QEMU i486</b>.
|
||||
<b>QEMU/Bifferboard i486</b>.
|
||||
This port uses the <a href="http://wiki.qemu.org/Main_Page">QEMU</a> i486 and the native
|
||||
Linux, Cywgin, MinGW the GCC toolchain under Linux or Cygwin.
|
||||
</p>
|
||||
<ul>
|
||||
<p>
|
||||
<b>STATUS:</b>
|
||||
This port is code complete but not yet tested. Stayed tuned.
|
||||
The basic port was code-complete in NuttX-5.19 and verifed in NuttX-6.0.
|
||||
The port was verified using the OS and NuttShell (NSH) examples under QEMU.
|
||||
The port is reported to be functional on the <a href="http://bifferos.bizhat.com">Bifferboard</a> as well.
|
||||
This is a great, stable starting point for anyone interest in fleshing out the x86 port!
|
||||
</p>
|
||||
</ul>
|
||||
</td>
|
||||
@ -2074,113 +2068,7 @@ Other memory:
|
||||
</table>
|
||||
|
||||
<ul><pre>
|
||||
nuttx-5.19 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* arch/arm/stm32/stm32_idle.c -- During idle times, the STM32 now uses the
|
||||
WFI instruction to sleep in a reduced power mode until the next interrupt
|
||||
occurs (Contributed by Uros Platise).
|
||||
* NSH: 'mem' command renamed to 'free'. Output is now more similar to the
|
||||
Linux 'free' command.
|
||||
* NSH: Correct a redirection bug in NSH. The following would not work; it
|
||||
resulted in a hang after the 'cat /dev/fifo':
|
||||
|
||||
nsh> mkfile /dev/fifo
|
||||
nsh> cd /tmp # /tmp is a mounted RAM disk
|
||||
nsh> cat /dev/fifo > test.txt &
|
||||
nsh> echo "This is a test" > /dev/fifo
|
||||
|
||||
The error was caused because (1) there was a path that resulted in stdout
|
||||
being closed (the "hang") and also (2) the 'cat' command was always outputting
|
||||
to stdout, not to the redirected file descriptor. Now:
|
||||
|
||||
nsh> cat test.txt
|
||||
This is a test
|
||||
|
||||
* drivers/pipes/pipe_common.c -- Driver open method was not returning an EINTR
|
||||
error when it received a signal. Instead, it just re-started the wait. This
|
||||
makes it impossible to kill a background pipe operation from NSH.
|
||||
* include/stdint.h -- Correct some errors in conditional compilation (submitted
|
||||
by Johannes Hampel).
|
||||
* arch/arm/lpc17xx/lp17_idle.c -- Uses the same logic as the STM32: uses the
|
||||
WFI instruction to sleep in a reduced power mode until the next interrupt
|
||||
occurs.
|
||||
* configs/olimex-lpc1766stk -- Added an LED encoded to indicate if the LPC1766
|
||||
is in sleeping.
|
||||
* examples/mm -- This is a simplified version of the "built-in" memory manager
|
||||
test of mm/mm_test.c. It is simplified because it does not have access to
|
||||
the internals of the memory manager as does mm/mm_test.c, but it has the
|
||||
advantage that it runs in the actual NuttX tasking environment (the
|
||||
mm/mm_test.c only runs in a PC simulation environment).
|
||||
* drivers/mmcsd_sdio.c/h -- Several corrections submitted by Uros Platise.
|
||||
* arch/x86 - Provide support for x86 architectures. Support for the i486
|
||||
architecture under QEMU is provided under arch/x86/include/i486,
|
||||
arch/x86/include/qemu, arch/x86/src/i486, and arch/x86/src/qemu.
|
||||
* configs/qemu-i486 - "Board" support configurations for verifying the QEME
|
||||
i486 port.
|
||||
* arch/arm/src/stm32/stm32_spi.c -- Correct base address of SPI3 (reported by
|
||||
Uros Platise).
|
||||
* drivers/mmcsd/mmcsd_sdio.c -- Correct a loop termination condition (also
|
||||
reported by Uros Platise).
|
||||
* drivers/mtd/ramtron.c - Driver for SPI-based RAMTRON NVRAM devices FM25V10
|
||||
(and others). Contributed by Uros Platise.
|
||||
* examples/nsh and tools/mkromfsimg.sh -- Add support for platform-specific
|
||||
ROMFS-based NSH start-up scripts.
|
||||
* drivers/uart_16550.c and include/nuttx/uart_16550.h - Support for a generic
|
||||
16550 UART.
|
||||
* configure/qemu-i486/nsh - QEMU NSH example.
|
||||
* ../apps - The apps directory add-on was created by Uros Platise. It
|
||||
supports a set of end-user applications than can be executed on top of
|
||||
NSH. Think of it this way: In a buckled-up embedded application, your
|
||||
end-user programs will probably have their own dedicated start-up logic.
|
||||
But, during development, you might want to have you applications
|
||||
available and executable from the NSH command line. This apps/ addon
|
||||
(and NSH hooks) was contributed by Uros to accomplish just that.
|
||||
* sched/sched_waitpid() and include/sys/wait.h - Provides a simple and
|
||||
very incomplete implementation of waitpid(). waitpid() is only available
|
||||
if CONFIG_SCHED_WAITPID is defined in your configuration file.
|
||||
* sched/atexit.c and sched/exit.c - The atexit function is not frequently
|
||||
used. In order to save a few bytes, it is now conditioned on
|
||||
CONFIG_SCHED_ATEXIT. It your application is currently using atexit(),
|
||||
you will need to add CONFIG_SCHED_ATEXT to your configuration file.
|
||||
* drivers/net/slip.c - Add a SLIP driver (untested on initial check-in).
|
||||
* configs/olimex-lpc1766stk/slip-httpd - An example that uses SLIP to
|
||||
provide a serial-port based THTTPD web server.
|
||||
|
||||
apps-5.19 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* Initial version of the apps/ directory was released as contributed by
|
||||
Uros Platise.
|
||||
|
||||
pascal-2.0 2009-12-21 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* Updated to use standard C99 types in stdint.h and
|
||||
stdbool.h. This change was necessary for compatibility
|
||||
with NuttX-5.0 (any beyond).
|
||||
|
||||
buildroot-1.9 2011-02-10 <spudmonkey@racsa.co.cr>
|
||||
|
||||
* configs/arm926t-defconfig-4.3.3: update arm926t-defconfig-4.2.4
|
||||
* configs/arm926t-defconfig-nxflat: NXFLAT-only configuration for
|
||||
arm926
|
||||
* toolchain/gdb/gdb.mk - Remove ncurses dependency from gdb_target target.
|
||||
* toolchain/gdb/gdb.mk - Added --disable-werror to GDB configuration line.
|
||||
GDB 6.8 won't build because the tarbal was released with -Werror enabled and
|
||||
the build stops on the first warning.
|
||||
* Add support for Freescale m9s12x using binutils 2.18 and gcc 3.3.6 and
|
||||
patches available from http://www.msextra.com/tools courtesy of James
|
||||
Cortina. Add configs/m9x12x-defconfig-3.3.6.
|
||||
</pre></ul>
|
||||
|
||||
<table width ="100%">
|
||||
<tr bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<a name="pendingchanges">Unreleased Changes</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<ul><pre>
|
||||
nuttx-5.20 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
nuttx-6.1 2011-03-21 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* lib/lib_fopen() -- fopen() was not returning the correct errno value
|
||||
when the underlying open() failed.
|
||||
@ -2229,7 +2117,7 @@ nuttx-5.20 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
* apps/vsn - Move all VSN apps to apps/vsn.
|
||||
* nuttx/examples moved to apps/examples
|
||||
|
||||
apps-5.20 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
apps-6.0 2011-03-21 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* README.txt -- README cosmetics
|
||||
* hello/ -- hello world minor changes
|
||||
@ -2238,6 +2126,39 @@ apps-5.20 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
* hello/Makefile -- Now uses new Make.defs definitions. Added README.txt.
|
||||
* apps/poweroff -- New application to turn off board power.
|
||||
|
||||
pascal-2.0 2009-12-21 Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* Updated to use standard C99 types in stdint.h and
|
||||
stdbool.h. This change was necessary for compatibility
|
||||
with NuttX-5.0 (any beyond).
|
||||
|
||||
buildroot-1.9 2011-02-10 <spudmonkey@racsa.co.cr>
|
||||
|
||||
* configs/arm926t-defconfig-4.3.3: update arm926t-defconfig-4.2.4
|
||||
* configs/arm926t-defconfig-nxflat: NXFLAT-only configuration for
|
||||
arm926
|
||||
* toolchain/gdb/gdb.mk - Remove ncurses dependency from gdb_target target.
|
||||
* toolchain/gdb/gdb.mk - Added --disable-werror to GDB configuration line.
|
||||
GDB 6.8 won't build because the tarbal was released with -Werror enabled and
|
||||
the build stops on the first warning.
|
||||
* Add support for Freescale m9s12x using binutils 2.18 and gcc 3.3.6 and
|
||||
patches available from http://www.msextra.com/tools courtesy of James
|
||||
Cortina. Add configs/m9x12x-defconfig-3.3.6.
|
||||
</pre></ul>
|
||||
|
||||
<table width ="100%">
|
||||
<tr bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<a name="pendingchanges">Unreleased Changes</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<ul><pre>
|
||||
nuttx-6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
apps-6.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
pascal-2.1 2011-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
buildroot-1.10 2011-xx-xx <spudmonkey@racsa.co.cr>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<h1><big><font color="#3c34ec">
|
||||
<i>NuttX RTOS Porting Guide</i>
|
||||
</font></big></h1>
|
||||
<p>Last Updated: March 20, 2011</p>
|
||||
<p>Last Updated: March 21, 2011</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -1016,7 +1016,6 @@ netutils/
|
||||
</p>
|
||||
<ul>
|
||||
<li>Copy <code>configs/</code><i><board-name></i><code>/[</code><i><config-dir></i><code>/appconfig</code> to <app-dir><code>/.config</code></li>
|
||||
<li><code>echo "CONFIG_BUILTIN_APPS=y" >> "${TOPDIR}/.config"</code></li>
|
||||
<li><code>echo "APPS_LOC=\"<app-dir>\"" >> "${TOPDIR}/.config"</code></li>
|
||||
</ul>
|
||||
|
||||
@ -2668,10 +2667,10 @@ extern void up_ledoff(int led);
|
||||
<ul>
|
||||
<li>
|
||||
<p>
|
||||
<code>CONFIG_APP_DIR</code>: Identifies the directory that builds the application to link with NuttX.
|
||||
This symbol must be assigned to the path to the application build directory <i>relative</i> to the NuttX top build directory.
|
||||
If the application resides in the top-level <code>apps</code> directory, it is not necessary to define <code>CONFIG_APP_DIR</code>.
|
||||
If you had an application directory and the NuttX directory both within another directory like this:
|
||||
<code>CONFIG_APPS_DIR</code>: Identifies the directory that builds the application to link with NuttX.
|
||||
This symbol must be assigned to the path of the application build directory <i>relative</i> to the NuttX top build directory.
|
||||
If the application resides in the top-level <code>../apps/</code> directory, it is not necessary to define <code>CONFIG_APPS_DIR</code>.
|
||||
If you have an application directory and the NuttX directory each in separate directories such as this:
|
||||
<ul><pre>
|
||||
build
|
||||
|-nuttx
|
||||
@ -2681,14 +2680,15 @@ build
|
||||
|
|
||||
`- Makefile
|
||||
</pre></ul>
|
||||
Then you would set <code>CONFIG_APP_DIR=../application</code>.
|
||||
Then you would set <code>CONFIG_APPS_DIR=../application</code>.
|
||||
The default value of <code>CONFIG_APPS_DIR</code> is <code>../apps/</code>.
|
||||
</p>
|
||||
<p>
|
||||
The application direction must contain <code>Makefile</code> and this make file must support the following targets:
|
||||
<ul>
|
||||
<li>
|
||||
<code>libapp$(LIBEXT)</code> (usually <code>libapp.a</code>).
|
||||
<code>libapp.a</code> is a static library ( an archive) that contains all of application object files.
|
||||
<code>libapps$(LIBEXT)</code> (usually <code>libapps.a</code>).
|
||||
<code>libapps.a</code> is a static library ( an archive) that contains all of application object files.
|
||||
</li>
|
||||
<li>
|
||||
<code>clean</code>.
|
||||
@ -2708,7 +2708,7 @@ build
|
||||
<p>
|
||||
When this application is invoked it will receive the setting <code>TOPDIR</code> like:
|
||||
<ul>
|
||||
<code>$(MAKE) -C $(CONFIG_APP_DIR) TOPDIR="$(TOPDIR)"</code> <target>
|
||||
<code>$(MAKE) -C $(CONFIG_APPS_DIR) TOPDIR="$(TOPDIR)"</code> <target>
|
||||
</ul>
|
||||
</p>
|
||||
<p>
|
||||
|
34
Makefile
34
Makefile
@ -62,16 +62,22 @@ BOARD_DIR = configs/$(CONFIG_ARCH_BOARD)
|
||||
# Add-on directories. These may or may not be in place in the
|
||||
# NuttX source tree (they must be specifically installed)
|
||||
#
|
||||
# APPLOC can be over-ridden from the command line or in the .config file:
|
||||
# CONFIG_APPS_DIR can be over-ridden from the command line or in the .config file.
|
||||
# The default value of CONFIG_APPS_DIR is ../apps. Ultimately, the application
|
||||
# will be built if APPDIR is defined. APPDIR will be defined if a directory containing
|
||||
# a Makefile is found at the path provided by CONFIG_APPS_DIR
|
||||
|
||||
ifeq ($(CONFIG_BUILTIN_APPS),y)
|
||||
ifeq ($(APPLOC),)
|
||||
APPLOC = ../apps
|
||||
endif
|
||||
APPDIR := ${shell if [ -r $(APPLOC)/Makefile ]; then echo "$(APPLOC)"; fi}
|
||||
ifeq ($(CONFIG_APPS_DIR),)
|
||||
CONFIG_APPS_DIR = ../apps
|
||||
endif
|
||||
APPDIR := ${shell if [ -r $(CONFIG_APPS_DIR)/Makefile ]; then echo "$(CONFIG_APPS_DIR)"; fi}
|
||||
|
||||
# The Pascal p-code add-on directory
|
||||
|
||||
PCODE_DIR := ${shell if [ -r pcode/Makefile ]; then echo "pcode"; fi}
|
||||
|
||||
# All add-on directories
|
||||
|
||||
ADDON_DIRS := $(PCODE_DIR) $(NX_DIR) $(APPDIR)
|
||||
|
||||
# FSDIRS depend on file descriptor support; NONFSDIRS do not
|
||||
@ -88,10 +94,6 @@ NONFSDIRS += graphics
|
||||
CONTEXTDIRS += graphics
|
||||
endif
|
||||
|
||||
ifneq ($(CONFIG_APP_DIR),)
|
||||
NONFSDIRS = $(CONFIG_APP_DIR)
|
||||
endif
|
||||
|
||||
# CLEANDIRS are the directories that will clean in. These are
|
||||
# all directories that we know about.
|
||||
# MAKEDIRS are the directories in which we will build targets
|
||||
@ -146,17 +148,11 @@ ifeq ($(CONFIG_HAVE_CXX),y)
|
||||
LINKLIBS += libxx/liblibxx$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Add application-specific library
|
||||
|
||||
ifneq ($(CONFIG_APP_DIR),)
|
||||
LINKLIBS = $(CONFIG_APP_DIR)/libapp$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Add library for application support
|
||||
# Always compile the framework which includes exec_nuttapp if users
|
||||
# or nuttX applications are to be included.
|
||||
|
||||
ifeq ($(CONFIG_BUILTIN_APPS),y)
|
||||
ifneq ($(APPDIR),)
|
||||
LINKLIBS += $(APPDIR)/libapps$(LIBEXT)
|
||||
endif
|
||||
|
||||
@ -291,9 +287,6 @@ pcode/libpcode$(LIBEXT): context
|
||||
graphics/libgraphics$(LIBEXT): context
|
||||
@$(MAKE) -C graphics TOPDIR="$(TOPDIR)" libgraphics$(LIBEXT)
|
||||
|
||||
$(CONFIG_APP_DIR)/libapp$(LIBEXT): context
|
||||
@$(MAKE) -C $(CONFIG_APP_DIR) TOPDIR="$(TOPDIR)" libapp$(LIBEXT)
|
||||
|
||||
# If the 2 pass build option is selected, then this pass1 target is
|
||||
# configured be build a extra link object. This is assumed to be an
|
||||
# incremental (relative) link object, but could be a static library
|
||||
@ -355,6 +348,7 @@ depend: context
|
||||
done
|
||||
|
||||
subdir_clean:
|
||||
echo "CLEANDIRS: $(CLEANDIRS)"
|
||||
@for dir in $(CLEANDIRS) ; do \
|
||||
if [ -e $$dir/Makefile ]; then \
|
||||
$(MAKE) -C $$dir TOPDIR="$(TOPDIR)" clean ; \
|
||||
|
49
ReleaseNotes
49
ReleaseNotes
@ -1694,7 +1694,7 @@ identified in the ChangeLog. Headlines would include:
|
||||
* Incorporated the LUFA HID parser.
|
||||
* Various bugfix as detailed in the ChangeLog
|
||||
|
||||
nuttx-5.18
|
||||
nuttx-5.19
|
||||
^^^^^^^^^^
|
||||
|
||||
The 66th release of NuttX, Version 5.19, was made on March 12, 2011 and is
|
||||
@ -1730,3 +1730,50 @@ several new features in various states of integration and maturity:
|
||||
Uros Platise))
|
||||
* New waitpid() system interface.
|
||||
* Additional bugfixes: pipes, stdint.h, STM32 SDIO and SPI drivers
|
||||
|
||||
nuttx-6.0
|
||||
^^^^^^^^^
|
||||
|
||||
The 67th release of NuttX, Version 6.0, was made on March 21, 2011 and is
|
||||
available for download from the SourceForge website. The version number of
|
||||
this release was bumped from 5.19 to 6.0. A change in the major revision
|
||||
number is used to reflect an incompatibility with previous versions. In
|
||||
this release, the NuttX core OS functionality has been separated from NuttX
|
||||
application-related functionality. These are provided as separate tarballs:
|
||||
|
||||
* nuttx-6.0.tar.gz, and
|
||||
* apps-6.0.tar.gz
|
||||
|
||||
The purpose of this separation is both to better organize and modularize the
|
||||
NuttX source tree, but also to provide better support for incorporation of
|
||||
end-user applications with Nuttx.
|
||||
|
||||
The incompatibily results from the changes to the board configuration logic
|
||||
needed to supported the separable application. The major changes to the
|
||||
configuration include:
|
||||
|
||||
* CONFIG_APPS_DIR - This should not be set. The default is ../apps. This
|
||||
should only be set if you have a custom, product-specific application
|
||||
directory in some different location.
|
||||
|
||||
* appconfig - Each board configuration now requires a new file called
|
||||
'appconfig.' As its name suggests, this file provides new configuration
|
||||
information needed by the logic in ../apps.
|
||||
|
||||
In addition to this major reorganization in the directory structure, this
|
||||
release also includes some important extensions to existing features and some
|
||||
important bugfixes. These include:
|
||||
|
||||
* The SLIP driver was been well debugged and significantly re-designed.
|
||||
Now you can have an Ethernet connection to you board even if you have
|
||||
no Ethernet hardware. How cool is that?
|
||||
|
||||
* The QEMU i486 port is now functional. It has also been reported to
|
||||
work on the Bifferboard (see http://bifferos.bizhat.com/).
|
||||
|
||||
* And extensions to the uIP driver interface, and
|
||||
|
||||
* Bug fixes to fopen() and STM32 GPIO configuration
|
||||
|
||||
Please see the ChangeLog for details.
|
||||
|
||||
|
2
TODO
2
TODO
@ -687,7 +687,7 @@ o ARM/LPC17xx (arch/arm/src/lpc17xx/)
|
||||
debug disabled. For some reason, certain debug statements hang(?).
|
||||
Also, this example does not use UART1's hardware flow control. UART1
|
||||
hardware flow control is partially implemented but does not behave as
|
||||
expected. It needs a little more work.
|
||||
expected. Hardware flow control needs a little more work.
|
||||
Status: Open
|
||||
Priority: Low
|
||||
|
||||
|
@ -168,8 +168,8 @@ defconfig -- This is a configuration file similar to the Linux
|
||||
|
||||
Building application code:
|
||||
|
||||
CONFIG_APP_DIR - Identifies the directory that builds the
|
||||
application to link with NuttX. This symbol must be assigned
|
||||
CONFIG_APPS_DIR - Identifies the directory that builds the
|
||||
application to link with NuttX. Default: ../apps This symbol must be assigned
|
||||
to the path to the application build directory *relative* to
|
||||
the NuttX top build direcory. If you had an application
|
||||
directory and the NuttX directory each in separate directory
|
||||
@ -183,12 +183,12 @@ defconfig -- This is a configuration file similar to the Linux
|
||||
|
|
||||
`- Makefile
|
||||
|
||||
Then you would set CONFIG_APP_DIR=../application.
|
||||
Then you would set CONFIG_APPS_DIR=../application.
|
||||
|
||||
The application direction must contain Makefile and this make
|
||||
file must support the following targets:
|
||||
|
||||
- libapp$(LIBEXT) (usually libapp.a). libapp.a is a static
|
||||
- libapps$(LIBEXT) (usually libapps.a). libapps.a is a static
|
||||
library ( an archive) that contains all of application object
|
||||
files.
|
||||
- clean. Do whatever is appropriate to clean the application
|
||||
@ -201,7 +201,7 @@ defconfig -- This is a configuration file similar to the Linux
|
||||
|
||||
When this application is invoked it will receive the setting TOPDIR like:
|
||||
|
||||
$(MAKE) -C $(CONFIG_APP_DIR) TOPDIR="$(TOPDIR)" <target>
|
||||
$(MAKE) -C $(CONFIG_APPS_DIR) TOPDIR="$(TOPDIR)" <target>
|
||||
|
||||
TOPDIR is the full path to the NuttX directory. It can be used, for
|
||||
example, to include makefile fragments (e.g., .config or Make.defs)
|
||||
@ -1108,7 +1108,6 @@ And if configs/<board-name>/<config-dir>/appconfig exists in the board
|
||||
configuration directory:
|
||||
|
||||
Copy configs/<board-name>/<config-dir>/appconfig to <app-dir>/.config
|
||||
echo "CONFIG_BUILTIN_APPS=y" >> "${TOPDIR}/.config"
|
||||
echo "APPS_LOC=\"<app-dir>\"" >> "${TOPDIR}/.config"
|
||||
|
||||
tools/configure.sh
|
||||
|
@ -216,8 +216,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -305,7 +305,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -216,8 +216,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -305,7 +305,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -135,8 +135,8 @@ CONFIG_NET_C5471_BASET10=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -200,7 +200,7 @@ CONFIG_NET_C5471_BASET10=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -135,8 +135,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -200,7 +200,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -194,8 +194,8 @@ CONFIG_PASS1_OBJECT=init.r
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -283,7 +283,7 @@ CONFIG_PASS1_OBJECT=init.r
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -234,8 +234,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -323,7 +323,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -236,8 +236,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -327,7 +327,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -235,8 +235,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -44,18 +44,18 @@ PASS1_LIBBOARD = $(PASS1_BOARDDIR)/libboard$(LIBEXT)
|
||||
|
||||
# Where is the application library?
|
||||
|
||||
ifneq ($(CONFIG_APP_DIR),)
|
||||
PASS1_LIBAPP = $(CONFIG_APP_DIR)/libapp$(LIBEXT)
|
||||
ifneq ($(CONFIG_APPS_DIR),)
|
||||
PASS1_LIBAPPS = $(CONFIG_APPS_DIR)/libapps$(LIBEXT)
|
||||
else
|
||||
ifneq ($(APPDIR),)
|
||||
PASS1_LIBAPP = $(APPDIR)/libapps$(LIBEXT)
|
||||
PASS1_LIBAPPS = $(APPDIR)/libapps$(LIBEXT)
|
||||
endif
|
||||
endif
|
||||
|
||||
# Remove the application library (libapp) from the list of libraries. Add
|
||||
# Remove the application library (libapps) from the list of libraries. Add
|
||||
# the boad library (liboard)
|
||||
|
||||
PASS1_LINKLIBS = $(filter-out $(PASS1_LIBAPP),$(LINKLIBS))
|
||||
PASS1_LINKLIBS = $(filter-out $(PASS1_LIBAPPS),$(LINKLIBS))
|
||||
PASS1_LINKLIBS += $(PASS1_LIBBOARD)
|
||||
|
||||
# Get the paths to the libraries and the links script path in format that
|
||||
|
@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -208,8 +208,8 @@ CONFIG_PASS1_OBJECT=locked.r
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -297,7 +297,7 @@ CONFIG_PASS1_OBJECT=locked.r
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_FS=n
|
||||
|
@ -201,8 +201,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -290,7 +290,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_FS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -268,7 +268,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -265,7 +265,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -274,7 +274,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -271,7 +271,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -167,8 +167,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -234,7 +234,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||
@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||
@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||
@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_NET - enables debug of the network subsystem
|
||||
@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -170,8 +170,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -237,7 +237,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -171,8 +171,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -239,7 +239,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -222,8 +222,8 @@ CONFIG_SPI_CMDDATA=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -293,7 +293,7 @@ CONFIG_SPI_CMDDATA=y
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -222,8 +222,8 @@ CONFIG_SPI_CMDDATA=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -293,7 +293,7 @@ CONFIG_SPI_CMDDATA=y
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -217,8 +217,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -288,7 +288,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -105,8 +105,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -167,7 +167,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -237,8 +237,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -139,8 +139,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -204,7 +204,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -155,8 +155,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -220,7 +220,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -205,8 +205,8 @@ CONFIG_PASS1_OBJECT=init.r
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -294,7 +294,7 @@ CONFIG_PASS1_OBJECT=init.r
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -142,8 +142,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -207,7 +207,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -147,8 +147,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -215,7 +215,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -143,8 +143,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -208,7 +208,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -233,8 +233,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -322,7 +322,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -230,8 +230,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -319,7 +319,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -237,8 +237,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -237,8 +237,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -237,8 +237,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -326,7 +326,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -236,8 +236,8 @@ CONFIG_SPI_CMDDATA=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -325,7 +325,7 @@ CONFIG_SPI_CMDDATA=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
|
@ -231,8 +231,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -320,7 +320,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -236,8 +236,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -322,7 +322,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -234,8 +234,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -320,7 +320,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -231,8 +231,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -320,7 +320,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -231,8 +231,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -320,7 +320,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -234,8 +234,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -325,7 +325,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -162,8 +162,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_MM_REGIONS - If the architecture includes multiple
|
||||
@ -193,7 +193,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
|
||||
# driver (minimal support)
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
#CONFIG_DEBUG_MM=y
|
||||
|
@ -162,8 +162,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_MM_REGIONS - If the architecture includes multiple
|
||||
@ -193,7 +193,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_DEV_LOWCONSOLE - Use the simple, low-level serial console
|
||||
# driver (minimal support)
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
#CONFIG_DEBUG_MM=y
|
||||
|
@ -206,8 +206,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -289,7 +289,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -206,8 +206,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -271,7 +271,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -206,8 +206,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -271,7 +271,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# This format will support execution of NuttX binaries located
|
||||
# in a ROMFS filesystem (see examples/nxflat).
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -103,8 +103,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -165,7 +165,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -174,8 +174,8 @@ CONFIG_UART3_2STOP=0
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory that builds
|
||||
# the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory that builds
|
||||
# the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with debug symbols
|
||||
@ -230,7 +230,7 @@ CONFIG_UART3_2STOP=0
|
||||
# task_create() when a new task is started. If set, all sockets will appear
|
||||
# to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -90,8 +90,8 @@ CONFIG_ARCH_DMA=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory that builds
|
||||
# the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory that builds
|
||||
# the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with debug symbols
|
||||
@ -146,7 +146,7 @@ CONFIG_ARCH_DMA=n
|
||||
# task_create() when a new task is started. If set, all sockets will appear
|
||||
# to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -292,7 +292,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -203,8 +203,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -292,7 +292,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -204,8 +204,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -293,7 +293,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -52,8 +52,8 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -114,7 +114,7 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -52,8 +52,8 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -114,7 +114,7 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -52,8 +52,8 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -114,7 +114,7 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -59,8 +59,8 @@ CONFIG_SIM_FBBPP=8
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -121,7 +121,7 @@ CONFIG_SIM_FBBPP=8
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -59,8 +59,8 @@ CONFIG_SIM_FBBPP=32
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -121,7 +121,7 @@ CONFIG_SIM_FBBPP=32
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -52,8 +52,8 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -114,7 +114,7 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=y
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -52,8 +52,8 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -114,7 +114,7 @@ CONFIG_ARCH_BOARD_SIM=y
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -150,8 +150,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -212,7 +212,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -226,8 +226,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -315,7 +315,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -236,8 +236,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -325,7 +325,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -238,8 +238,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -327,7 +327,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -238,8 +238,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -327,7 +327,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_USB=n
|
||||
|
@ -236,8 +236,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -325,7 +325,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_FS=n
|
||||
|
@ -154,8 +154,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -216,7 +216,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -154,8 +154,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -216,7 +216,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# desciptors by task_create() when a new task is started. If
|
||||
# set, all sockets will appear to be closed in the new task.
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=n
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
@ -250,8 +250,8 @@ CONFIG_HAVE_LIBM=n
|
||||
#
|
||||
# General OS setup
|
||||
#
|
||||
# CONFIG_APP_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX.
|
||||
# CONFIG_APPS_DIR - Identifies the relative path to the directory
|
||||
# that builds the application to link with NuttX. Default: ../apps
|
||||
# CONFIG_DEBUG - enables built-in debug options
|
||||
# CONFIG_DEBUG_VERBOSE - enables verbose debug output
|
||||
# CONFIG_DEBUG_SYMBOLS - build without optimization and with
|
||||
@ -339,7 +339,7 @@ CONFIG_HAVE_LIBM=n
|
||||
# CONFIG_SIG_SIGWORK - The signal number that will be used to wake-up
|
||||
# the worker thread. Default: 4
|
||||
#
|
||||
#CONFIG_APP_DIR=
|
||||
#CONFIG_APPS_DIR=
|
||||
CONFIG_DEBUG=n
|
||||
CONFIG_DEBUG_VERBOSE=y
|
||||
CONFIG_DEBUG_SYMBOLS=n
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user