aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-21 17:32:30 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-09-21 17:32:30 +0000
commit4edf18b0098c8db0513c3aab76622bfa06fe5293 (patch)
tree93f1f46bb258c6ea21c005fef2b7588a62d6a9c8 /nuttx/ChangeLog
parent16778b66e2a172b9c415e08288c2a5dbf5a0b7df (diff)
downloadpx4-firmware-4edf18b0098c8db0513c3aab76622bfa06fe5293.tar.gz
px4-firmware-4edf18b0098c8db0513c3aab76622bfa06fe5293.tar.bz2
px4-firmware-4edf18b0098c8db0513c3aab76622bfa06fe5293.zip
Add support for Fire STM32v3; sscanf fixes from Kate
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5168 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7ad830d89..42110fd79 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -3377,3 +3377,12 @@
commands used in the build (Contributed by Richard Cochran).
* drivers/net/enc28j60.c: The ENC28J60 Ethernet driver is
now functional.
+ * configs/fire-stm32v2: Add support or the fire-stm32v3 board as
+ well (untested because I do not have a v3 board).
+ * lib/stdio/lib_sscanf.c: Add %n psuedo-format (from Kate).
+ * lib/stdio/lib_sscanf.c: There is an issue of handling input
+ when (1) no fieldwidth is provided and (2) there is no space
+ seperating the input values. No solutions is in place for this
+ case now (either space or a fieldwidth must be provided). But
+ at least some of the bad logic that attempted to handle this
+ case has been removed (noted by Kate).