summaryrefslogtreecommitdiff
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
commit25005873740ccbca576d198a4036a8a1413905f8 (patch)
tree93f1f46bb258c6ea21c005fef2b7588a62d6a9c8 /nuttx/ChangeLog
parent0375e765b1f7686f25a0159cfd409fbe33708f31 (diff)
downloadnuttx-25005873740ccbca576d198a4036a8a1413905f8.tar.gz
nuttx-25005873740ccbca576d198a4036a8a1413905f8.tar.bz2
nuttx-25005873740ccbca576d198a4036a8a1413905f8.zip
Add support for Fire STM32v3; sscanf fixes from Kate
git-svn-id: svn://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).