浏览代码

More 8 extruders (TMC) support

Scott Lahteine 5 年前
父节点
当前提交
7f5dc7b919
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5
    5
      Marlin/src/module/configuration_store.cpp

+ 5
- 5
Marlin/src/module/configuration_store.cpp 查看文件

37
  */
37
  */
38
 
38
 
39
 // Change EEPROM version if the structure changes
39
 // Change EEPROM version if the structure changes
40
-#define EEPROM_VERSION "V76"
40
+#define EEPROM_VERSION "V77"
41
 #define EEPROM_OFFSET 100
41
 #define EEPROM_OFFSET 100
42
 
42
 
43
 // Check the integrity of data offsets.
43
 // Check the integrity of data offsets.
134
 
134
 
135
 #pragma pack(push, 1) // No padding between variables
135
 #pragma pack(push, 1) // No padding between variables
136
 
136
 
137
-typedef struct { uint16_t X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5; } tmc_stepper_current_t;
138
-typedef struct { uint32_t X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5; } tmc_hybrid_threshold_t;
139
-typedef struct {  int16_t X, Y, Z, X2;                                     } tmc_sgt_t;
140
-typedef struct {     bool X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5; } tmc_stealth_enabled_t;
137
+typedef struct { uint16_t X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5, E6, E7; } tmc_stepper_current_t;
138
+typedef struct { uint32_t X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5, E6, E7; } tmc_hybrid_threshold_t;
139
+typedef struct {  int16_t X, Y, Z, X2;                                                 } tmc_sgt_t;
140
+typedef struct {     bool X, Y, Z, X2, Y2, Z2, Z3, Z4, E0, E1, E2, E3, E4, E5, E6, E7; } tmc_stealth_enabled_t;
141
 
141
 
142
 // Limit an index to an array size
142
 // Limit an index to an array size
143
 #define ALIM(I,ARR) _MIN(I, COUNT(ARR) - 1)
143
 #define ALIM(I,ARR) _MIN(I, COUNT(ARR) - 1)

正在加载...
取消
保存