diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-02 19:09:53 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-11-02 19:09:53 +0000 |
commit | c98a36e315b5ec6d1685baedd956926297f7ecba (patch) | |
tree | 9a7f0e29ef79acd3e8ba1b646f859b7ea3f6b297 /os/io/spi.h | |
parent | 639d957e5eacffffb849b976552b39a2b66433aa (diff) | |
download | ChibiOS-c98a36e315b5ec6d1685baedd956926297f7ecba.tar.gz ChibiOS-c98a36e315b5ec6d1685baedd956926297f7ecba.tar.bz2 ChibiOS-c98a36e315b5ec6d1685baedd956926297f7ecba.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1264 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/io/spi.h')
-rw-r--r-- | os/io/spi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/io/spi.h b/os/io/spi.h index e0a163db2..b8e434cd5 100644 --- a/os/io/spi.h +++ b/os/io/spi.h @@ -59,7 +59,7 @@ extern "C" { void spiStop(SPIDriver *spip);
void spiSelect(SPIDriver *spip);
void spiUnselect(SPIDriver *spip);
- msg_t spiExchange(SPIDriver *spip, size_t n, void *rxbuf, void *txbuf);
+ msg_t spiExchange(SPIDriver *spip, size_t n, void *txbuf, void *rxbuf);
msg_t spiSend(SPIDriver *spip, size_t n, void *txbuf);
msg_t spiReceive(SPIDriver *spip, size_t n, void *rxbuf);
#if SPI_USE_MUTUAL_EXCLUSION
|