There was an error while loading. Please reload this page.
1 parent 25e8494 commit db1075bCopy full SHA for db1075b
2 files changed
src/odemis/driver/tmcm.py
@@ -94,7 +94,7 @@ def __str__(self):
94
REFPROC_FAKE = "FakeReferencing" # was used for simulator when it didn't support referencing
95
96
# Model number (int) of devices tested
97
-KNOWN_MODELS = {1140, 3110, 6110, 3214, 1211}
+KNOWN_MODELS = {1140, 3110, 6110, 3214, 6214, 1211}
98
KNOWN_MODELS_CAN = {'PD-1240', 'PD-1240-fake'}
99
# These models report the velocity/accel in internal units of the TMC429
100
USE_INTERNAL_UNIT_429 = {1110, 1140, 3110, 6110}
util/tmcmconfig
@@ -102,12 +102,13 @@ OUT_CONFIG_DEFAULT = {
102
}
103
104
# Models which don't support axis param storage
105
-NO_AXIS_STORAGE = {1211, 3214}
+NO_AXIS_STORAGE = {1211, 3214, 6214}
106
107
# List of axis params which are _not_ present (per model)
108
MISSING_AXIS_PARAMS = {
109
1211: {149, 153, 154, 200},
110
3214: {149, 153, 154, 200},
111
+ 6214: {149, 153, 154, 200},
112
1140: {17, 24, 25, 26, 31, 251},
113
3110: {17, 24, 25, 26, 31, 201, 212, 251},
114
6110: {17, 24, 25, 26, 31, 201, 212, 251},
@@ -117,6 +118,7 @@ MISSING_AXIS_PARAMS = {
117
118
MISSING_GLOBAL_PARAMS = {
119
1211: {(0, 79), (0, 90)},
120
3214: {(0, 79), (0, 90)},
121
+ 6214: {(0, 79), (0, 90)},
122
1140: {},
123
3110: {},
124
6110: {},
0 commit comments