summaryrefslogtreecommitdiff
path: root/ucoo/hal
diff options
context:
space:
mode:
Diffstat (limited to 'ucoo/hal')
-rw-r--r--ucoo/hal/spi/spi_soft.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ucoo/hal/spi/spi_soft.hh b/ucoo/hal/spi/spi_soft.hh
index 2dc1a64..b162d75 100644
--- a/ucoo/hal/spi/spi_soft.hh
+++ b/ucoo/hal/spi/spi_soft.hh
@@ -36,9 +36,9 @@ class SpiSoftMaster : public SpiMaster
SpiSoftMaster (Io &sck, Io &mosi, Io &miso);
/// Destructor, disable.
~SpiSoftMaster ();
- /// Enable and setup.
+ /// See SpiMaster::enable.
void enable (int speed_hz, SpiMode mode = SPI_MODE_0);
- /// Disable.
+ /// See SpiMaster::disable.
void disable ();
/// See SpiMaster::send_and_recv.
void send_and_recv (const char *tx_buf, char *rx_buf, int count);