1
0
mirror of https://github.com/rene-dev/stmbl.git synced 2024-12-20 07:32:10 +00:00

Compare commits

..

No commits in common. "71ec816a7f66184d678829c0fa1306fd37a92982" and "5b02ecdf544d877e08b4dad3bf7730b2ccaca19b" have entirely different histories.

3 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,6 @@
load conf
conf0.r = 1
conf0.l = 0.01
conf0.l_ratio = 1
conf0.j = 0.000025
conf0.j_sys = 0.0
conf0.j_lpf = 100.0

View File

@ -6,6 +6,4 @@ hv0.d_cmd = 0
hv0.pos = 0
hv0.phase_mode = 3
hv0.q_cmd = dc_ttc0.cur
hv0.cmd_mode = 1
conf0.phase_time = 0
conf0.phase_cur = 0
hv0.cmd_mode = 1

View File

@ -154,7 +154,8 @@ static void rt_func(float period, void *ctx_ptr, hal_pin_inst_t *pin_ptr) {
PIN(torque_sat) = MAX(PIN(torque_sat) - period, 0.0);
}
PIN(ff_torque_cmd) = PIN(acc_ext_cmd) * (PIN(j_mot) + PIN(j_sys));
PIN(ff_torque_cmd) = PIN(torque_ext_cmd);
PIN(ff_torque_cmd) += PIN(acc_ext_cmd) * (PIN(j_mot) + PIN(j_sys));
PIN(ff_torque_cmd) += PIN(d) * PIN(vel_cmd);
PIN(ff_torque_cmd) += PIN(f) * SIGN2(PIN(vel_cmd), PIN(max_vel) * 0.001);
PIN(ff_torque_cmd) += PIN(l);