You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One thing I have noticed is that tracker offset trim (buttons) works in the reverse direction to the pan offset setting in the configurator. For example config offset=-15 with offset trim=-15 negates to a zero offset. Looks like the C code does { offset - offset trim } versus { offset + offset trim }. Version - SPRACINGF3 RC1-11.1.0.
One thing I have noticed is that tracker offset trim (buttons) works in the reverse direction to the pan offset setting in the configurator. For example config offset=-15 with offset trim=-15 negates to a zero offset. Looks like the C code does { offset - offset trim } versus { offset + offset trim }. Version - SPRACINGF3 RC1-11.1.0.
File main.c
int16_t getOffset(int16_t offset_master,int8_t offset_trim){
return offset_master - (int16_t)offset_trim;
}
I think this should be
int16_t getOffset(int16_t offset_master,int8_t offset_trim){
return offset_master + (int16_t)offset_trim;
}
The text was updated successfully, but these errors were encountered: