We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef62c70 commit 9b094e8Copy full SHA for 9b094e8
include/nuttx/mmcsd.h
@@ -95,6 +95,16 @@ struct mmc_ioc_cmd
95
unsigned int blksz;
96
unsigned int blocks;
97
98
+ /* Sleep at least postsleep_min_us useconds, and at most
99
+ * postsleep_max_us useconds *after* issuing command. Needed for
100
+ * some read commands for which cards have no other way of indicating
101
+ * they're ready for the next command (i.e. there is no equivalent of
102
+ * a "busy" indicator for read operations).
103
+ */
104
+
105
+ unsigned int postsleep_min_us;
106
+ unsigned int postsleep_max_us;
107
108
/* Override driver-computed timeouts. Note the difference in units! */
109
110
unsigned int data_timeout_ns;
0 commit comments