From 3bd7a1b091a8d7071d6362204a29564b70f02e75 Mon Sep 17 00:00:00 2001 From: Rex Garland Date: Sat, 23 Sep 2023 23:54:06 -0700 Subject: [PATCH] Fix typo in spi.md --- docs/modules/spi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/spi.md b/docs/modules/spi.md index 47343e0864..260137c31a 100644 --- a/docs/modules/spi.md +++ b/docs/modules/spi.md @@ -215,7 +215,7 @@ Start an SPI transaction, consisting of up to 5 phases: - `cmd_bitlen` bit length of the command phase (0 - 16) - `cmd_data` data for command phase - `addr_bitlen` bit length for address phase (0 - 32) -- `addr_data` data for command phase +- `addr_data` data for address phase - `mosi_bitlen` bit length of the MOSI phase (0 - 512) - `dummy_bitlen` bit length of the dummy phase (0 - 256) - `miso_bitlen` bit length of the MISO phase (0 - 512) for half-duplex.
Full-duplex mode is activated with a negative value.