Skip to content

Commit a24ecb5

Browse files
committed
Updated readme and some comments
1 parent 39b6c3b commit a24ecb5

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@ By default serial debugging is disabled. To turn it on simply change ```ENABLE_U
6666
Currently the following boards are supported by the library:
6767

6868
* All official Arduino AVR boards (Uno, Duemilanove, Mega, Mega 2560, Mega ADK, Leonardo etc.)
69-
* Teensy (Teensy++ 1.0, Teensy 2.0, Teensy++ 2.0, and Teensy 3.0)
70-
* Note if you are using the Teensy 3.0 you should download this SPI library as well: <https://github.com/xxxajk/spi4teensy3>. You should then add ```#include <spi4teensy3.h>``` to your .ino file.
69+
* Arduino Due
70+
* Teensy (Teensy++ 1.0, Teensy 2.0, Teensy++ 2.0, and Teensy 3.x)
71+
* Note if you are using the Teensy 3.x you should download this SPI library as well: <https://github.com/xxxajk/spi4teensy3>. You should then add ```#include <spi4teensy3.h>``` to your .ino file.
7172
* Balanduino
7273
* Sanguino
7374
* Black Widdow

avrpins.h

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -823,15 +823,17 @@ MAKE_PIN(P33, CORE_PIN33_PORTREG, CORE_PIN33_BIT, CORE_PIN33_CONFIG);
823823

824824
#elif defined(ARDUINO_SAM_DUE) && defined(__SAM3X8E__)
825825

826-
// Disable interrupts
827-
// Enable the pull up resistor
828-
// Set to INPUT
829-
// Enable PIO
830-
831-
// Disable interrupts
832-
// Disable the pull up resistor
833-
// Set to OUTPUT
834-
// Enable PIO
826+
// SetDirRead:
827+
// Disable interrupts
828+
// Enable the pull up resistor
829+
// Set to INPUT
830+
// Enable PIO
831+
832+
// SetDirWrite:
833+
// Disable interrupts
834+
// Disable the pull up resistor
835+
// Set to OUTPUT
836+
// Enable PIO
835837

836838
#define MAKE_PIN(className, baseReg, pinMask) \
837839
class className { \

0 commit comments

Comments
 (0)