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.
|
2020-08-20 01:14:03 -04:00
|
|
|
|
2025-11-11 18:05:12 -08:00
|
|
|
#include "wpi/hal/Main.h"
|
|
|
|
|
|
2020-08-20 01:14:03 -04:00
|
|
|
#include <thread>
|
|
|
|
|
|
2025-11-07 19:56:21 -05:00
|
|
|
#include "wpi/hal/DriverStation.h"
|
|
|
|
|
#include "wpi/hal/HALBase.h"
|
|
|
|
|
#include "wpi/util/print.hpp"
|
2020-08-20 01:14:03 -04:00
|
|
|
|
|
|
|
|
extern "C" int HALSIM_InitExtension(void);
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
HAL_Initialize(500, 0);
|
|
|
|
|
HALSIM_InitExtension();
|
|
|
|
|
|
|
|
|
|
HAL_RunMain();
|
|
|
|
|
|
|
|
|
|
int cycleCount = 0;
|
|
|
|
|
while (cycleCount < 100) {
|
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
|
|
|
cycleCount++;
|
2025-11-07 20:00:05 -05:00
|
|
|
wpi::util::print("Count: {}\n", cycleCount);
|
2020-08-20 01:14:03 -04:00
|
|
|
}
|
|
|
|
|
|
2025-11-07 20:00:05 -05:00
|
|
|
wpi::util::print("DONE\n");
|
2020-08-20 01:14:03 -04:00
|
|
|
HAL_ExitMain();
|
|
|
|
|
}
|