2017-07-08 10:50:56 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2017-08-23 22:06:13 -07:00
|
|
|
/* Copyright (c) 2017 FIRST. All Rights Reserved. */
|
2017-07-08 10:50:56 -04:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#include "TimedRobot.h"
|
|
|
|
|
|
|
|
|
|
#include <chrono>
|
|
|
|
|
|
2017-08-27 00:11:52 -07:00
|
|
|
#include <HAL/HAL.h>
|
2017-07-08 10:50:56 -04:00
|
|
|
|
|
|
|
|
using namespace frc;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Provide an alternate "main loop" via StartCompetition().
|
|
|
|
|
*/
|
|
|
|
|
void TimedRobot::StartCompetition() {
|
|
|
|
|
// Loop forever, calling the appropriate mode-dependent function
|
|
|
|
|
m_startLoop = true;
|
|
|
|
|
m_loop->StartPeriodic(m_period);
|
|
|
|
|
while (true) {
|
2017-08-04 20:44:33 -05:00
|
|
|
std::this_thread::sleep_for(std::chrono::hours(24));
|
2017-07-08 10:50:56 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set time period between calls to Periodic() functions.
|
|
|
|
|
*
|
|
|
|
|
* A timer event is queued for periodic event notification. Each time the
|
|
|
|
|
* interrupt occurs, the event will be immediately requeued for the same time
|
|
|
|
|
* interval.
|
|
|
|
|
*
|
|
|
|
|
* @param period Period in seconds.
|
|
|
|
|
*/
|
|
|
|
|
void TimedRobot::SetPeriod(double period) {
|
|
|
|
|
m_period = period;
|
|
|
|
|
|
|
|
|
|
if (m_startLoop) {
|
|
|
|
|
m_loop->StartPeriodic(m_period);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TimedRobot::TimedRobot() {
|
|
|
|
|
m_loop = std::make_unique<Notifier>(&TimedRobot::LoopFunc, this);
|
|
|
|
|
|
|
|
|
|
// HAL_Report(HALUsageReporting::kResourceType_Framework,
|
|
|
|
|
// HALUsageReporting::kFramework_Periodic);
|
|
|
|
|
HAL_Report(HALUsageReporting::kResourceType_Framework,
|
|
|
|
|
HALUsageReporting::kFramework_Iterative);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TimedRobot::~TimedRobot() { m_loop->Stop(); }
|