From 28d4c29d5d78016960ee1317f269fff50a01f106 Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 15 Sep 2009 14:18:15 +0000 Subject: [PATCH] Add CONFIG_DEBUG_SYMBOLS git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2053 42af7a65-404d-4744-a932-0658087f49c3 --- Documentation/NuttX.html | 4 +++- Documentation/NuttxPortingGuide.html | 14 +++++++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/Documentation/NuttX.html b/Documentation/NuttX.html index fdc628d49c..dd13cb7998 100644 --- a/Documentation/NuttX.html +++ b/Documentation/NuttX.html @@ -8,7 +8,7 @@

NuttX RTOS

-

Last Updated: September 11, 2009

+

Last Updated: September 15, 2009

@@ -1527,6 +1527,8 @@ nuttx-0.4.11 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> * net/net_tcppoll.c. Removed an unnecessary check for outstanding, un-ACKed data. The NuttX socket layer keeps track of ACKs and doesn't need this check; removing the check should improve write throughput + * Add DEBUG configuration option to enable debug console output without disabling + optimization (and vice versa) pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr> diff --git a/Documentation/NuttxPortingGuide.html b/Documentation/NuttxPortingGuide.html index 6fe556c6cb..a9bf7df8d3 100644 --- a/Documentation/NuttxPortingGuide.html +++ b/Documentation/NuttxPortingGuide.html @@ -12,7 +12,7 @@

NuttX RTOS Porting Guide

-

Last Updated: September 11, 2009

+

Last Updated: September 15, 2009

@@ -2004,6 +2004,9 @@ extern void up_ledoff(int led);
  • CONFIG_DEBUG_VERBOSE: enables verbose debug output
  • +
  • + CONFIG_DEBUG_SYMBOLS: build without optimization and with debug symbols (needed for use with a debugger). +
  • CONFIG_DEBUG_SCHED: enable OS debug output (disabled by default)
  • @@ -2013,12 +2016,21 @@ extern void up_ledoff(int led);
  • CONFIG_DEBUG_NET: enable network debug output (disabled by default)
  • +
  • + CONFIG_DEBUG_USB: enable USB debug output (disabled by default) +
  • CONFIG_DEBUG_FS: enable file system debug output (disabled by default)
  • CONFIG_DEBUG_LIB: enable C library debug output (disabled by default)
  • +
  • + CONFIG_DEBUG_BINFMT: enable binary loader debug output (disabled by default) +
  • +
  • + CONFIG_DEBUG_GRAPHICS: enable NX graphics debug output (disabled by default) +
  • CONFIG_ARCH_LOWPUTC: architecture supports low-level, boot time console output