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
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -135,29 +135,27 @@ class QSPI : private NonCopyable<QSPI> {
135
135
*
136
136
* @param instruction Instruction value to be used in instruction phase
137
137
* @param alt Alt value to be used in instruction phase
138
-
* @param dummy_cnt Amount of dummy cycles to be sent after instruction phase
139
138
* @param address Address to be accessed in QSPI peripheral
140
139
* @param rx_buffer Buffer for data to be read from the peripheral
141
140
* @param rx_length Pointer to a variable containing the length of rx_buffer, and on return this variable will be updated with the actual number of bytes read
142
141
*
143
142
* @returns
144
143
* Returns QSPI_STATUS_SUCCESS on successful reads and QSPI_STATUS_ERROR on failed reads.
/** Write to QSPI peripheral using custom write instruction, alt values
149
148
*
150
149
* @param instruction Instruction value to be used in instruction phase
151
150
* @param alt Alt value to be used in instruction phase
152
-
* @param dummy_cnt Amount of dummy cycles to be sent after instruction phase
153
151
* @param address Address to be accessed in QSPI peripheral
154
152
* @param tx_buffer Buffer containing data to be sent to peripheral
155
153
* @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
156
154
*
157
155
* @returns
158
156
* Returns QSPI_STATUS_SUCCESS on successful reads and QSPI_STATUS_ERROR on failed reads.
0 commit comments