summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-12-04 01:56:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-12-04 01:56:50 +0000
commit3d3a0af8b0d724f46656b6a9cb4a883f374558dc (patch)
treed132461991d0bd55066ab71526f7c5830a32308d /nuttx/ChangeLog
parent5076c4bb878881610884750c5a8fd43bdf99c471 (diff)
downloadnuttx-3d3a0af8b0d724f46656b6a9cb4a883f374558dc.tar.gz
nuttx-3d3a0af8b0d724f46656b6a9cb4a883f374558dc.tar.bz2
nuttx-3d3a0af8b0d724f46656b6a9cb4a883f374558dc.zip
P14201 driver now uses new SPI cmddata method
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3158 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog10
1 files changed, 9 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 91aa689d6..b13c6f02d 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -1381,4 +1381,12 @@
* examples/nsh/nsh_netinit.c -- Fix NSH bug. If CONFIG_NET is selected, but
CONFIG_EXAMPLES_NSH_TELNETD is not selected, then the network is never
initialized and bad things happen if you try to ping.
-
+ * drivers/lcd -- Add header files for the Phillips PCF8833 LCD controller and
+ for the Epson S1D15G10 LCD controller. A driver for the Nokia 6100 LCD is
+ coming.
+ * include/nuttx/spi.h and almost all other SPI files -- Added an optional
+ cmddata() method to the SPI interface. Some devices require and additional
+ out-of-band bit to specify if the next word sent to the device is a command
+ or data. This is typical, for example, in "9-bit" displays where the 9th bit
+ is the CMD/DATA bit. The cmddata method provides selection of command or data.
+ * drivers/lcd/p14201.c -- Now used the cmddata() method of the SPI interface.