From d04eccbf815ccaa1f2f8f9bfde2dd8c315ff43b4 Mon Sep 17 00:00:00 2001 From: Khalil Estell Date: Sun, 8 Dec 2024 14:20:34 -0700 Subject: [PATCH] :memo: shorten spi subtitles --- mkdocs/education/spi.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mkdocs/education/spi.md b/mkdocs/education/spi.md index 47d6c398d..f5dbeb902 100644 --- a/mkdocs/education/spi.md +++ b/mkdocs/education/spi.md @@ -186,7 +186,7 @@ write-then-read operations without asserting and de-asserting the chip select each time, add the `hal::no_cs` token as the first parameter of the utility APIs. -### `hal::write(hal::spi_channel& p_spi, ...)` +### `hal::write()` ```C++ #include @@ -239,7 +239,7 @@ void hal_write_spi_example(hal::spi_channel& p_spi, } ``` -### `hal::read(hal::spi_channel& p_spi, ...)` +### `hal::read()` ```C++ #include @@ -289,7 +289,7 @@ void hal_read_spi_example(hal::spi_channel& p_spi) { } ``` -### `hal::write_then_read(hal::spi_channel& p_spi, ...)` +### `hal::write_then_read()` ```C++ #include