[wpiutil] Remove roboRIO-specific timestamp code (#7669)

This commit is contained in:
Thad House
2025-01-13 14:59:11 -08:00
committed by GitHub
parent e41b33960a
commit afbaa43539
5 changed files with 0 additions and 269 deletions

View File

@@ -32,8 +32,6 @@ void stress();
void stress2();
int main(int argc, char* argv[]) {
wpi::impl::SetupNowDefaultOnRio();
if (argc == 2 && std::string_view{argv[1]} == "bench") {
bench();
return EXIT_SUCCESS;

View File

@@ -11,7 +11,6 @@
#include "ntcore.h"
int main(int argc, char** argv) {
wpi::impl::SetupNowDefaultOnRio();
nt::AddLogger(nt::GetDefaultInstance(), 0, UINT_MAX, [](auto& event) {
if (auto msg = event.GetLogMessage()) {
std::fputs(msg->message.c_str(), stderr);