mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
Fix documentation warnings generated by JavaDoc (NFC) (#3428)
Some C++ Doxygen comments were updated to reflect any wording changes. See `rg "(@return|@param \w+) TODO" | less` for list of incomplete docs.
This commit is contained in:
@@ -57,12 +57,17 @@ public class LiveWindow {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the enabled state of LiveWindow. If it's being enabled, turn off the scheduler and remove
|
||||
* all the commands from the queue and enable all the components registered for LiveWindow. If
|
||||
* it's being disabled, stop all the registered components and reenable the scheduler. TODO: add
|
||||
* code to disable PID loops when enabling LiveWindow. The commands should reenable the PID loops
|
||||
* themselves when they get rescheduled. This prevents arms from starting to move around, etc.
|
||||
* after a period of adjusting them in LiveWindow mode.
|
||||
* Set the enabled state of LiveWindow.
|
||||
*
|
||||
* <p>If it's being enabled, turn off the scheduler and remove all the commands from the queue and
|
||||
* enable all the components registered for LiveWindow. If it's being disabled, stop all the
|
||||
* registered components and reenable the scheduler.
|
||||
*
|
||||
* <p>TODO: add code to disable PID loops when enabling LiveWindow. The commands should reenable
|
||||
* the PID loops themselves when they get rescheduled. This prevents arms from starting to move
|
||||
* around, etc. after a period of adjusting them in LiveWindow mode.
|
||||
*
|
||||
* @param enabled True to enable LiveWindow.
|
||||
*/
|
||||
public static synchronized void setEnabled(boolean enabled) {
|
||||
if (liveWindowEnabled != enabled) {
|
||||
|
||||
Reference in New Issue
Block a user