Hi
I am planning my 6 DOF motion simulation and using 6 actuators for each actuator i am using 2 hoverboard motors. I am controlling each actuator via one Odrive V3.6 and 56 volt. And running the system via Uart.
My problem is that i am planning to install end stop and using the following code:
Set GPIO pin for series-connected limit switches (example GPIO 3)
shared_limit_gpio = 3
Configure the shared limit stop (both axes stop when triggered)
odrv0.axis0.min_endstop.config.gpio_num = shared_limit_gpio
odrv0.axis0.min_endstop.config.is_active_high = True # Active when triggered (circuit closed)
odrv0.axis0.min_endstop.config.enabled = True
odrv0.axis0.min_endstop.config.debounce_ms = 50
odrv0.axis0.min_endstop.config.endstop_stop_on_active = True
odrv0.axis1.min_endstop.config.gpio_num = shared_limit_gpio
odrv0.axis1.min_endstop.config.is_active_high = True
odrv0.axis1.min_endstop.config.enabled = True
odrv0.axis1.min_endstop.config.debounce_ms = 50
odrv0.axis1.min_endstop.config.endstop_stop_on_active = True
It semms to be that ODrive 0.5.6 does not support automatic motor stopping when an endstop is triggered.
Looking for help or any ideas ?
Best regards
Shaker