Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
00819f4
java
cswilson252 Jan 11, 2026
f0f8e9c
cpp
cswilson252 Jan 11, 2026
e6e9bc3
oh so thats why the other imports are like that
cswilson252 Jan 11, 2026
ae61d0d
use the normal print library
cswilson252 Jan 11, 2026
45b8982
change header name
cswilson252 Jan 11, 2026
5922082
proper import
cswilson252 Jan 11, 2026
1a32d6f
change import namespace from frc to wpi
cswilson252 Jan 11, 2026
6c47834
expand GetName
cswilson252 Jan 11, 2026
9377218
i dont like c++
cswilson252 Jan 11, 2026
6b51127
idk
cswilson252 Jan 11, 2026
3bbe5db
try with new namespace
cswilson252 Jan 11, 2026
92d96ff
...
cswilson252 Jan 11, 2026
a9a0058
delete semicolon
cswilson252 Jan 11, 2026
542889e
change to instance function
cswilson252 Jan 11, 2026
036fb4b
print within null check
cswilson252 Jan 11, 2026
0671fcc
Add logic to actual sim code
cswilson252 Feb 17, 2026
56bab44
lint by hand
cswilson252 Feb 17, 2026
d285ea2
god forbid i forget an empty line
cswilson252 Feb 17, 2026
df5cfeb
Update simulation/halsim_xrp/src/main/native/cpp/HALSimXRP.cpp
cswilson252 Feb 17, 2026
3c6c225
add romi printouts
cswilson252 Feb 17, 2026
839d8cf
fine i wont indent the line
cswilson252 Feb 17, 2026
1e8510e
missing import fix
cswilson252 Feb 18, 2026
07a6c20
line fix
cswilson252 Feb 18, 2026
d3c7426
include rearrange
cswilson252 Feb 18, 2026
2c301e0
rm whitespace again :sob:
cswilson252 Feb 18, 2026
8d8852f
change usage to call raw HAL functions
cswilson252 Feb 19, 2026
a843a47
line format fix
cswilson252 Feb 19, 2026
cb76b36
Just check if DS outputs are enabled
cswilson252 Feb 22, 2026
2ece932
line format
cswilson252 Feb 22, 2026
0be55b4
is that how member functions work?
cswilson252 Feb 22, 2026
94fbbf1
lint AGAIN
cswilson252 Feb 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <memory>
#include <string>

#include "wpi/hal/DriverStation.h"
#include "wpi/halsim/ws_client/HALSimWSClientConnection.hpp"
#include "wpi/net/uv/util.hpp"
#include "wpi/util/SmallString.hpp"
Expand Down Expand Up @@ -79,6 +80,8 @@ bool HALSimWS::Initialize() {
m_useMsgFiltering = false;
}

wpi::util::println("DS Outputs Enabled: {}", HAL_GetOutputsEnabled());

return true;
}

Expand Down
3 changes: 3 additions & 0 deletions simulation/halsim_xrp/src/main/native/cpp/HALSimXRP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include <cstdio>
#include <string>

#include "wpi/hal/DriverStation.h"
#include "wpi/net/raw_uv_ostream.hpp"
#include "wpi/net/uv/util.hpp"
#include "wpi/util/Endian.hpp"
Expand Down Expand Up @@ -66,6 +67,8 @@ bool HALSimXRP::Initialize() {

m_xrp.SetWPILibUpdateFunc(func);

wpi::util::println("DS Outputs Enabled: {}", HAL_GetOutputsEnabled());

return true;
}

Expand Down
Loading