1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #6569 from dkm/patch-1

drivers/include/periph/spi: Typo fix
This commit is contained in:
Joakim Nohlgård 2017-02-07 20:26:53 +01:00 committed by GitHub
commit b403952b9b

View File

@ -39,7 +39,7 @@
* 2. `spi_init_cs()` should be called during device driver initialization, as
* each chip select pin/line is used uniquely by a specific device, i.e. chip
* select lines are no shared resource.
* 3. `spi_aquire()` needs to be called for each new transaction. This function
* 3. `spi_acquire()` needs to be called for each new transaction. This function
* configures the bus with specific parameters (clock, mode) for the duration
* of that transaction.
*