Fix 9250 loop #274

Closed
opened 2026-04-05 17:52:24 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @castlemccloud on 5/24/2023

Previous refactoring of the code rolled both the assignment of the temp variable and the calibration matrix multiplication into a single loop.

This causes issue because every iteration of the loop for the matrix multiplication uses every value of temp, and it is not completely initialized until the final loop iteration.

The solution is to split the loop into two.

*Originally created by @castlemccloud on 5/24/2023* Previous refactoring of the code rolled both the assignment of the temp variable and the calibration matrix multiplication into a single loop. This causes issue because every iteration of the loop for the matrix multiplication uses every value of temp, and it is not completely initialized until the final loop iteration. The solution is to split the loop into two.
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/SlimeVR-Tracker-ESP#274