summaryrefslogtreecommitdiff
path: root/nuttx/Documentation/NuttxPortingGuide.html
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 14:18:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-09-15 14:18:15 +0000
commita3f9769a1e25b60594eb5563779c53d602f25ddd (patch)
treeadfdba82696e70936c1b2923e418c88977093394 /nuttx/Documentation/NuttxPortingGuide.html
parent152cfb69e4ebd748584c4f5466be62e2f017a59b (diff)
downloadpx4-nuttx-a3f9769a1e25b60594eb5563779c53d602f25ddd.tar.gz
px4-nuttx-a3f9769a1e25b60594eb5563779c53d602f25ddd.tar.bz2
px4-nuttx-a3f9769a1e25b60594eb5563779c53d602f25ddd.zip
Add CONFIG_DEBUG_SYMBOLS
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2053 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Documentation/NuttxPortingGuide.html')
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html14
1 files changed, 13 insertions, 1 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index 6fe556c6c..a9bf7df8d 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -12,7 +12,7 @@
<h1><big><font color="#3c34ec">
<i>NuttX RTOS Porting Guide</i>
</font></big></h1>
- <p>Last Updated: September 11, 2009</p>
+ <p>Last Updated: September 15, 2009</p>
</td>
</tr>
</table>
@@ -2005,6 +2005,9 @@ extern void up_ledoff(int led);
<code>CONFIG_DEBUG_VERBOSE</code>: enables verbose debug output
</li>
<li>
+ <code>CONFIG_DEBUG_SYMBOLS</code>: build without optimization and with debug symbols (needed for use with a debugger).
+ </li>
+ <li>
<code>CONFIG_DEBUG_SCHED</code>: enable OS debug output (disabled by default)
</li>
<li>
@@ -2014,12 +2017,21 @@ extern void up_ledoff(int led);
<code>CONFIG_DEBUG_NET</code>: enable network debug output (disabled by default)
</li>
<li>
+ <code>CONFIG_DEBUG_USB</code>: enable USB debug output (disabled by default)
+ </li>
+ <li>
<code>CONFIG_DEBUG_FS</code>: enable file system debug output (disabled by default)
</li>
<li>
<code>CONFIG_DEBUG_LIB</code>: enable C library debug output (disabled by default)
</li>
<li>
+ <code>CONFIG_DEBUG_BINFMT</code>: enable binary loader debug output (disabled by default)
+ </li>
+ <li>
+ <code>CONFIG_DEBUG_GRAPHICS</code>: enable NX graphics debug output (disabled by default)
+ </li>
+ <li>
<code>CONFIG_ARCH_LOWPUTC</code>: architecture supports low-level, boot
time console output
</li>