Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
[urcl] fix ascope display (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
spacey-sooty authored Aug 8, 2024
1 parent 333bed5 commit d509857
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/java/frc/robot/URCL.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,12 @@ public class URCL {
private static RawPublisher aliasesPublisher;
private static Notifier notifier;
private static final DataLog datalog = DataLogManager.getLog();
private static RawLogEntry persistentLogEntry = new RawLogEntry(datalog, "URCL/Raw/Persistent");
private static RawLogEntry periodicLogEntry = new RawLogEntry(datalog, "/URCL/Raw/Periodic");
private static RawLogEntry aliasLogEntry = new RawLogEntry(datalog, "/URCL/Raw/Aliases");
private static RawLogEntry persistentLogEntry =
new RawLogEntry(datalog, "URCL/Raw/Persistent", "", "URCLr2_persistent");
private static RawLogEntry periodicLogEntry =
new RawLogEntry(datalog, "/URCL/Raw/Periodic", "", "URCLr2_periodic");
private static RawLogEntry aliasLogEntry =
new RawLogEntry(datalog, "/URCL/Raw/Aliases", "", "URCLr2_aliases");

/**
* Start capturing data from REV motor controllers to NetworkTables. This method should only be
Expand Down

0 comments on commit d509857

Please sign in to comment.