Browse Source

Add Mightyboard Mega env (#17861)

Axel 4 years ago
parent
commit
2acdd2fadc
No account linked to committer's email address
1 changed files with 22 additions and 0 deletions
  1. 22
    0
      platformio.ini

+ 22
- 0
platformio.ini View File

@@ -76,6 +76,28 @@ lib_deps          = ${common.lib_deps}
76 76
 src_filter        = ${common.default_src_filter} +<src/HAL/AVR>
77 77
 
78 78
 #
79
+# MightyBoard ATmega2560 (MegaCore 100 pin boards variants)
80
+#
81
+[env:MightyBoard1280]
82
+platform          = atmelavr
83
+board             = ATmega1280
84
+board_build.f_cpu = 16000000L
85
+lib_deps          = ${common.lib_deps}
86
+  TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
87
+src_filter        = ${common.default_src_filter} +<src/HAL/AVR>
88
+
89
+#
90
+# MightyBoard ATmega2560 (MegaCore 100 pin boards variants)
91
+#
92
+[env:MightyBoard2560]
93
+platform          = atmelavr
94
+board             = ATmega2560
95
+board_build.f_cpu = 16000000L
96
+lib_deps          = ${common.lib_deps}
97
+  TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
98
+src_filter        = ${common.default_src_filter} +<src/HAL/AVR>
99
+
100
+#
79 101
 # RAMBo
80 102
 #
81 103
 [env:rambo]

Loading…
Cancel
Save