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
Currently, the function SaveData() in RobotData class has a foreach (var matchData in MatchDataList). This is problematic because it writes all the data of all matches to that point each time the data is saved instead of adding the difference in matches.
The text was updated successfully, but these errors were encountered:
I think we fixed this by switching the foreach loop to a for loop and adding a variable which stores the index of the last saved element. Have not been able to test this with the arduinos to confirm yet
Currently, the function SaveData() in RobotData class has a foreach (var matchData in MatchDataList). This is problematic because it writes all the data of all matches to that point each time the data is saved instead of adding the difference in matches.
The text was updated successfully, but these errors were encountered: