Skip to content

Commit 17c0f01

Browse files
author
Irit Arkin
committed
Typo
1 parent cb9621a commit 17c0f01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/contributing/target/QuadSPI.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The most common use case is an external memory to use as additional data storage
1010

1111
#### Defined behavior
1212

13-
- A target implementaion covers most of the QSPI frame format (some targets might not provide the flexibility for setting all frame parameters).
13+
- A target implementation covers most of the QSPI frame format (some targets might not provide the flexibility for setting all frame parameters).
1414
- Command transfer - A target might provide additional functions for sending device-specific commands. If it does not, you can implement it using read and write functions. (This is target or driver dependent.)
1515

1616
#### Undefined behavior
@@ -36,7 +36,7 @@ qspi_status_t qspi_init(qspi_t *obj, PinName io0, PinName io1, PinName io2, PinN
3636
qspi_status_t qspi_free(qspi_t *obj);
3737
qspi_status_t qspi_frequency(qspi_t *obj, int hz);
3838
qspi_status_t qspi_write(qspi_t *obj, const qspi_command_t *command, const void *data, size_t *length);
39-
qspi_status_t qspi_command_transfer(qspi_t *obj, const qspi_command_t *command, const void *tx_data, size_t tx_size, void *rx_data, size_t rx_size);
39+
qspi_status_t qspi_command_transfer(qspi_t *obj, const qspi_command_t *command, const void *tx_data, size_t tx_size, void *rx_data, size_t rx_size);
4040
qspi_status_t qspi_read(qspi_t *obj, const qspi_command_t *command, void *data, size_t *length);
4141
4242
```

0 commit comments

Comments
 (0)