Files
allwpilib/simulation/halsim_ws_server/src/dev/native/cpp/main.cpp
Tyler Veness 1705b2d61c Upgrade wpiformat and use clang-format's include sorting (#8350)
This PR also uses the newly added -default-branch flag to generate the list of changed files with respect to the correct branch (2027).
2025-11-11 18:05:12 -08:00

34 lines
757 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.
#include "wpi/hal/Main.h"
#include <cstdio>
#include <thread>
#include "wpi/hal/DriverStation.h"
#include "wpi/hal/HALBase.h"
#include "wpi/util/print.hpp"
extern "C" int HALSIM_InitExtension(void);
int main() {
HAL_Initialize(500, 0);
HALSIM_InitExtension();
// HAL_ObserveUserProgramStarting();
HAL_RunMain();
int cycleCount = 0;
while (cycleCount < 1000) {
std::this_thread::sleep_for(std::chrono::milliseconds(100));
cycleCount++;
wpi::util::print("Count: {}\n", cycleCount);
}
std::puts("DONE");
HAL_ExitMain();
}