Skip to content

Commit 2b05feb

Browse files
Apply a Marlin-specific version
1 parent 0eb42f8 commit 2b05feb

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

library.json

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
{
2-
"name": "TMCStepper",
3-
"version": "0.7.3",
4-
"keywords": "TMC, Trinamic, stepper, driver, SPI, UART, TMC2130, TMC2160, TMC2208, TMC2224, TMC2660, TMC5130, TMC5160, TMC5161",
5-
"description": "Arduino library for configuring Trinamic stepper drivers.",
6-
"repository":
7-
{
8-
"type": "git",
9-
"url": "https://github.com/teemuatlut/TMCStepper.git"
10-
},
11-
"frameworks": "arduino",
12-
"platforms": "*"
13-
}
2+
"name": "TMCStepper",
3+
"version": "0.8.0",
4+
"keywords": "TMC, Trinamic, stepper, driver, SPI, UART, TMC2130, TMC2160, TMC2208, TMC2224, TMC2660, TMC5130, TMC5160, TMC5161",
5+
"description": "Arduino library for configuring Trinamic stepper drivers.",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/MarlinFirmware/TMCStepper.git"
9+
},
10+
"frameworks": "arduino",
11+
"platforms": "*"
12+
}

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=TMCStepper
2-
version=0.7.3
2+
version=0.8.0
33
author=teemuatlut
44
maintainer=teemuatlut
55
sentence=Arduino library for Trinamic stepper drivers
66
paragraph=Easily configure your Trinamic stepper motor drivers
77
category=Device Control
8-
url=https://github.com/teemuatlut/TMCStepper
8+
url=https://github.com/MarlinFirmware/TMCStepper
99
architectures=*

src/TMCStepper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
#define INIT2224_REGISTER(REG) TMC2224_n::REG##_t REG##_register = TMC2224_n::REG##_t
7979
#define SET_ALIAS(TYPE, DRIVER, NEW, ARG, OLD) TYPE (DRIVER::*NEW)(ARG) = &DRIVER::OLD
8080

81-
#define TMCSTEPPER_VERSION 0x000703 // v0.7.3
81+
#define TMCSTEPPER_VERSION 0x000800 // v0.8.0 - Marlin bumps minor version
8282

8383
class TMCStepper {
8484
public:

0 commit comments

Comments
 (0)