|
|
@ -210,6 +210,13 @@ int32_t StepMotorCtrlModule::step_motor_read_tmc2160_state(int32_t* status) { |
|
|
|
return 0; |
|
|
|
}; |
|
|
|
|
|
|
|
int32_t StepMotorCtrlModule::step_motor_read_io_index_in_stm32(int32_t ioindex, int32_t* index_in_stm32) { |
|
|
|
if (ioindex < 0 || ioindex >= m_nio) { |
|
|
|
return err::kstep_motor_ioindex_out_of_range; |
|
|
|
} |
|
|
|
return 0; |
|
|
|
} |
|
|
|
|
|
|
|
/***********************************************************************************************************************
|
|
|
|
* INTER * |
|
|
|
***********************************************************************************************************************/ |
|
|
|