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
@@ -157,7 +157,7 @@ class QSPI : private NonCopyable<QSPI> {
157
157
158
158
/** Read from QSPI peripheral using custom read instruction, alt values
159
159
*
160
-
* @param instruction Instruction value to be used in instruction phase
160
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
161
161
* @param alt Alt value to be used in Alternate-byte phase. Use -1 for ignoring Alternate-byte phase
162
162
* @param address Address to be accessed in QSPI peripheral
163
163
* @param rx_buffer Buffer for data to be read from the peripheral
@@ -170,7 +170,7 @@ class QSPI : private NonCopyable<QSPI> {
170
170
171
171
/** Write to QSPI peripheral using custom write instruction, alt values
172
172
*
173
-
* @param instruction Instruction value to be used in instruction phase
173
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
174
174
* @param alt Alt value to be used in Alternate-byte phase. Use -1 for ignoring Alternate-byte phase
175
175
* @param address Address to be accessed in QSPI peripheral
176
176
* @param tx_buffer Buffer containing data to be sent to peripheral
@@ -183,7 +183,7 @@ class QSPI : private NonCopyable<QSPI> {
183
183
184
184
/** Perform a transaction to write to an address(a control register) and get the status results
185
185
*
186
-
* @param instruction Instruction value to be used in instruction phase
186
+
* @param instruction Instruction value to be used in instruction phase. Use QSPI_NO_INST to skip the instruction phase
187
187
* @param address Some instruction might require address. Use -1 if no address
188
188
* @param tx_buffer Buffer containing data to be sent to peripheral
189
189
* @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