]> git.earman.xyz Git - sensor-watch.git/commitdiff
add SPI to the index
authorJoey Castillo <joeycastillo@utexas.edu>
Thu, 27 Jan 2022 15:51:15 +0000 (10:51 -0500)
committerJoey Castillo <joeycastillo@utexas.edu>
Thu, 27 Jan 2022 15:51:15 +0000 (10:51 -0500)
watch-library/shared/watch/watch.h
watch-library/shared/watch/watch_spi.h
watch-library/shared/watch/watch_uart.h

index 8e47594c89188473e285152990e206fb6d54585c..3fbad812313f89b73dab30cd955b779eacb56556 100644 (file)
@@ -46,7 +46,8 @@
             - @ref gpio - This section covers functions related to general-purpose input and output signals.
             - @ref i2c - This section covers functions related to the SAM L22's built-I2C driver, including configuring
                          the I2C bus, putting values directly on the bus and reading data from registers on I2C devices.
-            - @ref debug - This section covers functions related to the debug UART, available on pin D1 of the 9-pin connector.
+            - @ref spi - This section covers functions related to the SAM L22's built-in SPI driver.
+            - @ref uart - This section covers functions related to the UART peripheral.
             - @ref deepsleep - This section covers functions related to preparing for and entering BACKUP mode, the
                                deepest sleep mode available on the SAM L22.
  */
index b72b0e0b0930afe185bfbc3089fa7df9dcbf8fff..ae0554b655828650620c14115c7b37a8e338f472 100644 (file)
@@ -56,8 +56,9 @@ bool watch_spi_write(const uint8_t *buf, uint16_t length);
 bool watch_spi_read(uint8_t *buf, uint16_t length);
 
 /** @brief Reads a series of values from a device on the SPI bus.
-  * @param buf Storage for the incoming bytes; on return, it will contain the received data.
-  * @param length The number of bytes that you wish to receive.
+  * @param data_out Storage for outgoing bytes.
+  * @param data_in Storage for incoming bytes.
+  * @param length The number of bytes to transfer.
   * @note This function does not manage the chip select pin (usually A3).
   */
 bool watch_spi_transfer(const uint8_t *data_out, uint8_t *data_in, uint16_t length);
index 04a53e4e505a26497e81b7e0d2206c58ff13312a..79fcd53ae8ccd1fcd119117af2b6c9e79b3da5c5 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "watch.h"
 
-/** @addtogroup debug UART
+/** @addtogroup uart UART
   * @brief This section covers functions related to the UART peripheral.
   **/
 /// @{