File tree 2 files changed +14
-0
lines changed
2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,8 @@ extern int config_reverse_axis( axis_e axis);
33
33
// these all return a hardware dimenstion
34
34
extern double config_axis_get_min_pos ( axis_e axis );
35
35
extern double config_axis_get_max_pos ( axis_e axis );
36
+ extern double config_axis_get_min_limsw_pos ( axis_e axis );
37
+ extern double config_axis_get_max_limsw_pos ( axis_e axis );
36
38
extern double config_get_step_size ( axis_e axis );
37
39
38
40
// these all return physical limitations
Original file line number Diff line number Diff line change @@ -290,6 +290,18 @@ double config_axis_get_min_pos( axis_e axis)
290
290
}
291
291
}
292
292
293
+ double config_axis_get_min_limsw_pos ( axis_e axis )
294
+ {
295
+ // TODO: Until properly implemented, return min pos.
296
+ return config_axis_get_min_pos ( axis );
297
+ }
298
+
299
+ double config_axis_get_max_limsw_pos ( axis_e axis )
300
+ {
301
+ // TODO: Until properly implemented, return max pos.
302
+ return config_axis_get_max_pos ( axis );
303
+ }
304
+
293
305
/*
294
306
* Specify the feed used during homing operations
295
307
* to release the home switch.
You can’t perform that action at this time.
0 commit comments