Closed Danielxyz123 closed 3 years ago
Hi @Danielxyz123,
this does seem to work on my hardware again. Could you replace Ruckig<2>
with Ruckig<2, true>
and post the exact thrown error message here?
Hi,
i had to modify your code to get the message in my Win10 VS System. Or do you mean another message?
Error message:
[ruckig] error in step 1, dof: 1 input: inp.current_position = [2.46105171562071, -1.740571215512525] inp.current_velocity = [-22.05435743108223, -16.24482629348391] inp.current_acceleration = [0, 9.881190028331117] inp.target_position = [0, -3.35] inp.target_velocity = [0, 0] inp.target_acceleration = [0, 0] inp.max_velocity = [32.34, 19.6] inp.max_acceleration = [245, 98] inp.max_jerk = [2450, 2450]
Error count : 0 Last Error : -110
Without try catch block, it throws no error message...
Now, i used the last commit... It works fine!
That's great to hear! Then it was probably caused by the same issue as #68. Feel free to open new issues if you get more ExecutionTimeCalculation errors.
Hi Pantor,
i got an "ErrorExecutionTimeCalculation" with the following Code.
`
include
include <ruckig/ruckig.hpp>
using namespace ruckig;
int main() { // Create instances: the ruckig otg as well as input and output parameters Ruckig<2> otg{ 0.002 }; InputParameter<2> input; OutputParameter<2> output;
} `