2020-12-26 14:12:05 -08:00
|
|
|
// 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.
|
2018-07-22 23:03:55 -07:00
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
|
|
2019-11-08 22:53:20 -08:00
|
|
|
#include <hal/DriverStation.h>
|
|
|
|
|
#include <hal/HALBase.h>
|
2018-07-22 23:03:55 -07:00
|
|
|
|
|
|
|
|
extern "C" int HALSIM_InitExtension(void);
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
HAL_Initialize(500, 0);
|
|
|
|
|
HALSIM_InitExtension();
|
2018-07-26 01:30:29 -07:00
|
|
|
|
|
|
|
|
HAL_ObserveUserProgramStarting();
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
|
|
|
}
|
2018-07-22 23:03:55 -07:00
|
|
|
}
|