Files
allwpilib/wpilibc/wpilibC++Devices/src/Internal/HardwareHLReporting.cpp
Alex Henning 7c8124d76c Allowed sharing of common C++ code between RoboRIO and Simulation.
Change-Id: I8bf2bda9df389c13ae0567a62dbf0ca931ceb6f8
2014-08-08 18:36:03 -04:00

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);
}