[hal, wpilib] Add RobotController.getComments() (#4463)

This commit is contained in:
Ryan Blue
2022-12-26 14:39:51 -05:00
committed by GitHub
parent 26bdbf3d41
commit 2ac41f3edc
19 changed files with 310 additions and 1 deletions

View File

@@ -24,6 +24,8 @@ public final class HALUtil extends JNIWrapper {
public static native String getSerialNumber();
public static native String getComments();
public static native long getFPGATime();
public static native int getHALRuntimeType();

View File

@@ -155,5 +155,9 @@ public class RoboRioDataJNI extends JNIWrapper {
public static native void setSerialNumber(String serialNumber);
public static native String getComments();
public static native void setComments(String comments);
public static native void resetData();
}