Skip to content

Commit d21d5bf

Browse files
committed
Add support for RP2040
1 parent 010c908 commit d21d5bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.org

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* Library Information
66
- Name :: TMC429
7-
- Version :: 2.3.0
7+
- Version :: 2.3.1
88
- License :: BSD
99
- URL :: https://github.com/janelia-arduino/TMC429
1010
- Author :: Peter Polidoro

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=TMC429
2-
version=2.3.0
2+
version=2.3.1
33
author=Peter Polidoro <peter@polidoro.io>
44
maintainer=Peter Polidoro <peter@polidoro.io>
55
sentence=Trinamic TMC429 triple-axis dedicated step and direction motion controller.

src/TMC429.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class TMC429
173173

174174
// SPISettings
175175
const static uint32_t SPI_CLOCK = 1000000;
176-
#if defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_RENESAS)
176+
#if defined(ARDUINO_ARCH_SAMD) || defined(ARDUINO_ARCH_RP2040) || defined(ARDUINO_ARCH_RENESAS)
177177
const static BitOrder SPI_BIT_ORDER = MSBFIRST;
178178
#else
179179
const static uint8_t SPI_BIT_ORDER = MSBFIRST;

0 commit comments

Comments
 (0)