You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: drivers/QSPI.h
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ class QSPI : private NonCopyable<QSPI> {
151
151
152
152
/** Read from QSPI peripheral using custom read instruction, alt values
153
153
*
154
-
* @param instruction Instruction value to be used in instruction phase
154
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
155
155
* @param alt Alt value to be used in Alternate-byte phase. Use -1 for ignoring Alternate-byte phase
156
156
* @param address Address to be accessed in QSPI peripheral
157
157
* @param rx_buffer Buffer for data to be read from the peripheral
@@ -164,7 +164,7 @@ class QSPI : private NonCopyable<QSPI> {
164
164
165
165
/** Write to QSPI peripheral using custom write instruction, alt values
166
166
*
167
-
* @param instruction Instruction value to be used in instruction phase
167
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
168
168
* @param alt Alt value to be used in Alternate-byte phase. Use -1 for ignoring Alternate-byte phase
169
169
* @param address Address to be accessed in QSPI peripheral
170
170
* @param tx_buffer Buffer containing data to be sent to peripheral
@@ -177,7 +177,7 @@ class QSPI : private NonCopyable<QSPI> {
177
177
178
178
/** Perform a transaction to write to an address(a control register) and get the status results
179
179
*
180
-
* @param instruction Instruction value to be used in instruction phase
180
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
181
181
* @param address Some instruction might require address. Use -1 if no address
182
182
* @param tx_buffer Buffer containing data to be sent to peripheral
183
183
* @param tx_length Pointer to a variable containing the length of data to be transmitted, and on return this variable will be updated with the actual number of bytes written
0 commit comments