Merge branch 'main' into 2027

This commit is contained in:
Peter Johnson
2025-09-20 11:19:40 -07:00
99 changed files with 3296 additions and 2039 deletions

View File

@@ -46,6 +46,10 @@ void Subsystem::Register() {
return CommandScheduler::GetInstance().RegisterSubsystem(this);
}
CommandPtr Subsystem::Idle() {
return cmd::Idle({this});
}
CommandPtr Subsystem::RunOnce(std::function<void()> action) {
return cmd::RunOnce(std::move(action), {this});
}