aboutsummaryrefslogtreecommitdiff
path: root/nuttx/Documentation
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 21:55:16 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 21:55:16 +0000
commit79ccfa4ae6db4b085703b12c8f6846716fc69df7 (patch)
treed6bc886b1d8c6772e245e715bb2676d95b8a9b78 /nuttx/Documentation
parent433dae74225a98c5ed65834b8574eea90259e220 (diff)
downloadpx4-firmware-79ccfa4ae6db4b085703b12c8f6846716fc69df7.tar.gz
px4-firmware-79ccfa4ae6db4b085703b12c8f6846716fc69df7.tar.bz2
px4-firmware-79ccfa4ae6db4b085703b12c8f6846716fc69df7.zip
Add syslog.h; rename lib_rawprintf() to syslog()
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5578 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/Documentation')
-rw-r--r--nuttx/Documentation/NuttxPortingGuide.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html
index fd358f423..f2f7ada02 100644
--- a/nuttx/Documentation/NuttxPortingGuide.html
+++ b/nuttx/Documentation/NuttxPortingGuide.html
@@ -4324,17 +4324,17 @@ build
<li>
<code>CONFIG_DEBUG</code>: enables built-in debug options.
This includes more extensive parameter checking, debug assertions, and other debug logic.
- This option is also necessary (but not sufficient) to enable debug console output;
- Debug console output must also be enabled on a subsystem-by-subsystem basis as described below.
+ This option is also necessary (but not sufficient) to enable debug syslog output;
+ Debug syslog output must also be enabled on a subsystem-by-subsystem basis as described below.
</li>
<li>
- <code>CONFIG_DEBUG_VERBOSE</code>: If debug console output is enabled, the option enables more verbose debug output.
+ <code>CONFIG_DEBUG_VERBOSE</code>: If debug syslog output is enabled, the option enables more verbose debug output.
Ignored if <code>CONFIG_DEBUG</code> is not defined.
If only <code>CONFIG_DEBUG</code> then the only output will be errors, warnings, and critical information.
- If <code>CONFIG_DEBUG_VERBOSE</code> is defined in addition, then general debug comments will also be included in the console output.
+ If <code>CONFIG_DEBUG_VERBOSE</code> is defined in addition, then general debug comments will also be included in the syslog output.
</li>
<li>
- <code>CONFIG_DEBUG_ENABLE</code>: Support an interface to enable or disable debug output.
+ <code>CONFIG_SYSLOG_ENABLE</code>: Support an interface to enable or disable syslog output.
</li>
<li>
<code>CONFIG_DEBUG_SYMBOLS</code>: build without optimization and with debug symbols (needed for use with a debugger).