summaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-11 12:32:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-11-11 12:32:45 +0000
commit0bbf5b74917b0bd7b4910d60ffe0cc82873194c8 (patch)
treeb9fad0ba4e57f8c9944aa42fea56fe9846157b16 /nuttx/ChangeLog
parentfa05c01cab6acc95f759f2432d43e5ac9ea7d29d (diff)
downloadnuttx-0bbf5b74917b0bd7b4910d60ffe0cc82873194c8.tar.gz
nuttx-0bbf5b74917b0bd7b4910d60ffe0cc82873194c8.tar.bz2
nuttx-0bbf5b74917b0bd7b4910d60ffe0cc82873194c8.zip
Add skeleton file that will hold the STM32 SDIO driver
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2243 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6d00bdb72..d60492160 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -955,5 +955,13 @@
and write buffering that can be used in any block driver.
* include/nuttx/wqueue.h -- Added a generic worker thread that can used to
defer processing from an interrupt to a task.
+ * include/nuttx/sdio.h -- Defines a generic SD/SDIO interface can can be
+ bound to a MMC/SD driver to provide SDIO-based MMC/SD support.
+ * drivers/mmcsd/mmcsd_sdio.c -- Provides a an SDIO-based MMC/SD driver.
+ * arch/arm/src/stm32/stm32_sdio.c -- Provides an STM32 implementation of
+ the SDIO interface defined in include/nuttx/sdio.h.
+
+ NOTE: On initial check-in, mmcsd_sdio.c and stm32_sdio.c are merely
+ skeleton frameworks for the driver.