Skip to content

Commit

Permalink
Testing for failed unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Cabooman committed Feb 5, 2024
1 parent dcd8dca commit 7f6eddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Software/src/devboard/utils/events.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void set_event(EVENTS_ENUM_TYPE event, uint8_t data) {
void update_event_timestamps(void) {
unsigned long new_millis = millis();
if (new_millis - previous_millis >= 1000) {
time_seconds++;
//time_seconds++;
previous_millis = new_millis;
}
}
Expand Down

0 comments on commit 7f6eddc

Please sign in to comment.