aboutsummaryrefslogtreecommitdiffstats
path: root/docs/spi_driver.md
diff options
context:
space:
mode:
authoritsnoteasy <pyrosoma1@yahoo.ie>2020-06-10 22:23:11 +0100
committerGitHub <noreply@github.com>2020-06-10 22:23:11 +0100
commit7aa4cc9603b8cdb0ea3ede753eff7d07a86a18b0 (patch)
treec48255b3861208d8b85e341b68bbc827b5f06711 /docs/spi_driver.md
parente26bc21d1452dcf04332d300a874dacc8d74862d (diff)
downloadfirmware-7aa4cc9603b8cdb0ea3ede753eff7d07a86a18b0.tar.gz
firmware-7aa4cc9603b8cdb0ea3ede753eff7d07a86a18b0.tar.bz2
firmware-7aa4cc9603b8cdb0ea3ede753eff7d07a86a18b0.zip
adds support for the atmega328 (#9043)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'docs/spi_driver.md')
-rw-r--r--docs/spi_driver.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/spi_driver.md b/docs/spi_driver.md
index c170bf1df..1d432432a 100644
--- a/docs/spi_driver.md
+++ b/docs/spi_driver.md
@@ -11,7 +11,7 @@ No special setup is required - just connect the `SS`, `SCK`, `MOSI` and `MISO` p
|ATMega16/32U2/4|`B0`|`B1` |`B2` |`B3` |
|AT90USB64/128 |`B0`|`B1` |`B2` |`B3` |
|ATmega32A |`B4`|`B7` |`B5` |`B6` |
-|ATmega328P |`B2`|`B5` |`B3` |`B4` |
+|ATmega328/P |`B2`|`B5` |`B3` |`B4` |
You may use more than one slave select pin, not just the `SS` pin. This is useful when you have multiple devices connected and need to communicate with them individually.
`SPI_SS_PIN` can be passed to `spi_start()` to refer to `SS`.