File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
src/main/java/org/frc6423/robot Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 2020public class Constants {
2121 /** Constants that affect robot bhavior during runtime */
2222 public class Flags {
23- /**
24- * Represents how often periodic robot logic will run
25- *
26- * </p> 0.02 Seconds by default
27- */
23+ /** Represents how often periodic robot logic will run 0.02 Seconds by default */
2824 public static final Time PERIOD = Seconds .of (0.02 );
2925
3026 /** When true, the robot will enable debug menus and log debug information */
3127 @ Deprecated public static final boolean debugMode = false ;
3228
33- /**
34- * When true, tunable entries will be added to NT for subsystems
35- *
36- * </p> Should be false by default
37- */
29+ /** When true, tunable entries will be added to NT for subsystems Should be false by default */
3830 public static final boolean TUNE_MODE = false ;
3931 }
4032
You can’t perform that action at this time.
0 commit comments