File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
hardware/arduino/avr/libraries/SPI Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
* Copyright (c) 2010 by Cristian Maglie <c.maglie@bug.st>
3
3
* Copyright (c) 2014 by Paul Stoffregen <paul@pjrc.com> (Transaction API)
4
+ * Copyright (c) 2014 by Matthijs Kooijman <matthijs@stdin.nl> (SPISettings AVR)
4
5
* SPI Master library for arduino.
5
6
*
6
7
* This file is free software; you can redistribute it and/or modify
Original file line number Diff line number Diff line change 21
21
22
22
// Uncomment this line to add detection of mismatched begin/end transactions.
23
23
// A mismatch occurs if other libraries fail to use SPI.endTransaction() for
24
- // each SPI.beginTransaction(). Connect a LED to this pin. The LED will turn
24
+ // each SPI.beginTransaction(). Connect an LED to this pin. The LED will turn
25
25
// on if any mismatch is ever detected.
26
26
// #define SPI_TRANSACTION_MISMATCH_LED 5
27
27
@@ -155,7 +155,7 @@ class SPIClass {
155
155
// Initialize the SPI library
156
156
static void begin ();
157
157
158
- // If SPI is to used from within an interrupt, this function registers
158
+ // If SPI is used from within an interrupt, this function registers
159
159
// that interrupt with the SPI library, so beginTransaction() can
160
160
// prevent conflicts. The input interruptNumber is the number used
161
161
// with attachInterrupt. If SPI is used from a different interrupt
You can’t perform that action at this time.
0 commit comments