Skip to content

Commit

Permalink
Merge pull request #312 from ottobonn/master
Browse files Browse the repository at this point in the history
Add support for SAMD11C14
  • Loading branch information
ladyada authored Jan 26, 2022
2 parents 7f3ebe0 + b60a439 commit abdf456
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Adafruit_NeoPixel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2253,10 +2253,11 @@ void Adafruit_NeoPixel::show(void) {
}
// END of NRF52 implementation

#elif defined(__SAMD21E17A__) || defined(__SAMD21G18A__) || \
defined(__SAMD21E18A__) || \
defined(__SAMD21J18A__) // Arduino Zero, Gemma/Trinket M0, SODAQ Autonomo
// and others
#elif defined(__SAMD21E17A__) || defined(__SAMD21G18A__) || \
defined(__SAMD21E18A__) || defined(__SAMD21J18A__) || \
defined (__SAMD11C14A__)
// Arduino Zero, Gemma/Trinket M0, SODAQ Autonomo
// and others
// Tried this with a timer/counter, couldn't quite get adequate
// resolution. So yay, you get a load of goofball NOPs...

Expand Down

0 comments on commit abdf456

Please sign in to comment.