1
0
mirror of https://gitlab.com/lander-team/lander-cpp.git synced 2025-07-24 23:21:29 +00:00

Resolve "Move init_loadCells() to teensy.h"

This commit is contained in:
Brendan McGeeney
2021-11-22 19:55:19 +00:00
committed by Anson Biggs
parent 8054e26857
commit 9442884d44
3 changed files with 126 additions and 71 deletions

View File

@@ -45,7 +45,8 @@ struct Vehicle {
double time = 0.0;
double lc0, lc1, lc2, lc3;
double lc0, lc1, lc2, lc3 = 0.0;
double lc0_processed, lc1_processed, lc2_processed, lc3_processed = 0.0;
};
void init_Vehicle(Vehicle &State) {