From fd891fceaf3c9852a361c70705d44e1ba7c4a38e Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 22 Aug 2011 15:42:10 +0000 Subject: Progress with Kinetis SDHC driver (more to to) git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3904 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/Documentation/NuttxPortingGuide.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'nuttx/Documentation/NuttxPortingGuide.html') diff --git a/nuttx/Documentation/NuttxPortingGuide.html b/nuttx/Documentation/NuttxPortingGuide.html index 2fda4d612..4289e9146 100644 --- a/nuttx/Documentation/NuttxPortingGuide.html +++ b/nuttx/Documentation/NuttxPortingGuide.html @@ -2759,6 +2759,16 @@ extern void up_ledoff(int led); Each SDIOI device driver must implement an instance of struct sdio_dev_s. That structure defines a call table with the following methods:

+

+ Mutual exclusion: +

+

Initialization/setup:

@@ -2767,13 +2777,13 @@ extern void up_ledoff(int led); uint8_t (*status)(FAR struct sdio_dev_s *dev);
void (*widebus)(FAR struct sdio_dev_s *dev, bool enable);
void (*clock)(FAR struct sdio_dev_s *dev, enum sdio_clock_e rate);
- int (*attach)(FAR struct sdio_dev_s *dev);

+ int (*attach)(FAR struct sdio_dev_s *dev);

Command/Status/Data Transfer: