Files
allwpilib/hal/src/main/native/sim/MockHooksInternal.h
2025-11-07 23:09:21 -08:00

28 lines
527 B
C++

// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#pragma once
#include <stdint.h>
#include "wpi/hal/simulation/MockHooks.h"
namespace wpi::hal {
void RestartTiming();
void PauseTiming();
void ResumeTiming();
bool IsTimingPaused();
void StepTiming(uint64_t delta);
uint64_t GetFPGATime();
double GetFPGATimestamp();
void SetProgramStarted();
} // namespace wpi::hal