mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
13 lines
346 B
C++
13 lines
346 B
C++
|
|
|
||
|
|
#include "Internal/HardwareHLReporting.h"
|
||
|
|
#include "HAL/HAL.hpp"
|
||
|
|
|
||
|
|
void HardwareHLReporting::ReportScheduler() {
|
||
|
|
HALReport(HALUsageReporting::kResourceType_Command,
|
||
|
|
HALUsageReporting::kCommand_Scheduler);
|
||
|
|
}
|
||
|
|
|
||
|
|
void HardwareHLReporting::ReportSmartDashboard() {
|
||
|
|
HALReport(HALUsageReporting::kResourceType_SmartDashboard, 0);
|
||
|
|
}
|