summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-07-01 16:50:16 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-07-01 16:50:16 -0600
commitaeebc7eb724e902efd4bbb6dc34fc57e2a66c9d4 (patch)
treec3ec8297022067b2071f1fd3fd404a50959eceac /nuttx/ChangeLog
parent47335ab4bab269c35774964642b823d0367f79ed (diff)
downloadnuttx-aeebc7eb724e902efd4bbb6dc34fc57e2a66c9d4.tar.gz
nuttx-aeebc7eb724e902efd4bbb6dc34fc57e2a66c9d4.tar.bz2
nuttx-aeebc7eb724e902efd4bbb6dc34fc57e2a66c9d4.zip
Add a general bit-bang SPI lower-half driver and implement the bit-bang driver for the Arduino ITEAD TFT shield
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog10
1 files changed, 7 insertions, 3 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index dcc7d15cf..cc4767aea 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -5019,7 +5019,7 @@
controlling SPI-related discrete inputs and outputs. Taken from
work by Alan Carvalho de Assis (2013-6-20).
* arch/arm/src/kl/kl_dumpgpio.c: Now compiles (2013-6-20).
- * configs/: Several defconfig files were changed that had
+ * configs/: Several defconfig files were changed that had
CONFIG_HAVE_CXXINITIALIZE=y. Because of recent changes to
apps/examples, these configurations may need to have
CONFIG_EXAMPLES_NSH_CXXINITIALIZE=y so that they behave as they did
@@ -5091,7 +5091,7 @@
fix to the sam3u_gpio.c write protection also fixed the touchscreen
problem (2013-6-28).
* confgis/sam3u_ek/nxwm: Created a configuration for the NxWM
- window manager for the SAM3U-EK board.
+ window manager for the SAM3U-EK board (2013-6-29).
* drivers/spi and include/nuttx/spi: New sub-directories to hold
SPI-related files. includes/nuttx/spi.h moved to include/nuttx/spi/.;
SPI-related Kconfig info moved from drivers/Kconfig to drivers/spi/kconfig
@@ -5099,4 +5099,8 @@
* drivers/spi/spi_bitbang.c and include/nuttx/spi/spi_bitbang.h: Add
support for a generic bit-bang SPI driver. This checkout is the
common upper-half logic. Still missing the lower half (2013-7-1).
-
+ * include/nuttx/spi/spi_bitbang.c: This is the common lower-half bit-
+ bang SPI logic (2013-7-1).
+ * configs/arduino-due/src/sam_nsh.c and sam_mmcsd.c: Add NSH customize
+ initialization. If so configured, initialize the SPI bit bang
+ interface to the MMC/SD slot on the ITEAD shield (2013-7-1).