| 4 | using namespace lemlib; |
| 5 | |
| 6 | Timer::Timer(uint32_t time) |
| 7 | : period(time) { |
| 8 | lastTime = pros::millis(); |
| 9 | } |
| 10 | |
| 11 | uint32_t Timer::getTimeSet() { |
| 12 | const uint32_t time = pros::millis(); // get time from RTOS |
nothing calls this directly
no outgoing calls
no test coverage detected