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