2018-05-11 12:38:23 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2019-09-03 19:55:17 -07:00
|
|
|
/* Copyright (c) 2018-2019 FIRST. All Rights Reserved. */
|
2018-05-11 12:38:23 -07: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. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2018-07-20 00:03:45 -07:00
|
|
|
#include "mockdata/MockHooks.h"
|
2018-05-11 12:38:23 -07:00
|
|
|
|
|
|
|
|
namespace frc {
|
|
|
|
|
namespace sim {
|
2018-08-16 01:17:59 -04:00
|
|
|
|
2018-05-11 12:38:23 -07:00
|
|
|
void WaitForProgramStart() { HALSIM_WaitForProgramStart(); }
|
2018-08-16 01:17:59 -04:00
|
|
|
|
2018-05-11 12:38:23 -07:00
|
|
|
void SetProgramStarted() { HALSIM_SetProgramStarted(); }
|
2018-08-16 01:17:59 -04:00
|
|
|
|
2018-07-26 01:30:29 -07:00
|
|
|
bool GetProgramStarted() { return HALSIM_GetProgramStarted(); }
|
2018-08-16 01:17:59 -04:00
|
|
|
|
2018-05-11 12:38:23 -07:00
|
|
|
void RestartTiming() { HALSIM_RestartTiming(); }
|
2018-08-16 01:17:59 -04:00
|
|
|
|
2018-05-11 12:38:23 -07:00
|
|
|
} // namespace sim
|
|
|
|
|
} // namespace frc
|