aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-02 00:42:46 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-08-02 00:42:46 +0000
commit6913926a9621d7aa92c89a44d7946290d299dcde (patch)
treef5f5fb874369d5379c1bdd728e0789c499e7ce81 /nuttx/ChangeLog
parent20324504d5997b2ddad85ec3bfa91544c09edd2a (diff)
downloadpx4-firmware-6913926a9621d7aa92c89a44d7946290d299dcde.tar.gz
px4-firmware-6913926a9621d7aa92c89a44d7946290d299dcde.tar.bz2
px4-firmware-6913926a9621d7aa92c89a44d7946290d299dcde.zip
Move RAMLOG driver to drivers/syslog; Add ability to output debug information to any character device or file
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4996 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 3dc1dc527..717361d80 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3099,4 +3099,15 @@
* sched/on_exit.c, sched/task_exithook.c, and include/nuttx/sched.c: Add
support for multiple registered on_exit() functions if CONFIG_SCHED_ONEXIT_MAX
is defined.
+ * drivers/syslog/ramlog.c: Move the RAM SYSLOG device into drivers/syslog
+ so that it will be in the same directory as some new SYSLOGing devices
+ in the works.
+ * include/nuttx/syslog.h and drivers/syslog/ramlog.c: The SYSLOG putc function
+ now has a common name that is independent of the device that provides the
+ SYSLOG.
+ * include/nuttx/syslog.h and drivers/syslog/syslog.c: This is a new, generic
+ SYSLOG device that can redirect debug output to any character device or file.
+ So you can log debug output to a file or you can put the console on /dev/ttyS0
+ and the debug output on /dev/ttyS1.
+