mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
[docs] Fix SysId routine JavaDoc warnings (#6159)
This commit is contained in:
@@ -20,12 +20,19 @@
|
||||
|
||||
namespace frc::sysid {
|
||||
|
||||
/** Possible state of a SysId routine. */
|
||||
/**
|
||||
* Possible state of a SysId routine.
|
||||
*/
|
||||
enum class State {
|
||||
/// Quasistatic forward test.
|
||||
kQuasistaticForward,
|
||||
/// Quasistatic reverse test.
|
||||
kQuasistaticReverse,
|
||||
/// Dynamic forward test.
|
||||
kDynamicForward,
|
||||
/// Dynamic reverse test.
|
||||
kDynamicReverse,
|
||||
/// No test.
|
||||
kNone
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user