Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# editorconfig.org
root = true

[*]
trim_trailing_whitespace = true
insert_final_newline = true

[{*.c,*.cpp,*.h,*.ino}]
end_of_line = lf

[{*.c,*.cpp,*.h,*.ino}]
charset = utf-8
indent_style = tab
indent_size = 4

[*.md]
# Two spaces at the end of the line means newline in Markdown
trim_trailing_whitespace = false

[{*.conf,*.sublime-project}]
indent_style = tab
indent_size = 4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Supported TMC drivers:
* [TMC2208][2208]
* [TMC2209][2209]
* [TMC2224][2224]
* [TMC2240][2240]
* [TMC2660][2660]
* [TMC5130][5130]
* [TMC5160][5160]
Expand All @@ -16,6 +17,7 @@ Supported TMC drivers:
[2208]: https://teemuatlut.github.io/TMCStepper/class_t_m_c2208_stepper.html
[2209]: https://teemuatlut.github.io/TMCStepper/class_t_m_c2209_stepper.html
[2224]: https://teemuatlut.github.io/TMCStepper/class_t_m_c2224_stepper.html
[2240]: https://teemuatlut.github.io/TMCStepper/class_t_m_c2240_stepper.html
[2660]: https://teemuatlut.github.io/TMCStepper/class_t_m_c2660_stepper.html
[5130]: https://teemuatlut.github.io/TMCStepper/class_t_m_c5130_stepper.html
[5160]: https://teemuatlut.github.io/TMCStepper/class_t_m_c5160_stepper.html
Expand Down
7 changes: 7 additions & 0 deletions TMC2240.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# TMC2240 Stepper Motor Driver

## References

- [Marlin TMC2240 (UART) for BIQU B1 SE Plus by z1996xm](//github.com/z1996xm/B1-SE-Plus-TMC2240/commits/main/) based on bugfix-2.0.x at 2022-04-24
- [TMCStepper (UART) by z1996xm](//github.com/z1996xm/TMC2240-Lib)
- [TMC2240 (SPI) by makerbase-mks](//github.com/makerbase-mks/TMC2240-LIB)
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
},
"frameworks": "arduino",
"platforms": "*"
}
}
Loading