mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
[docs] Add missing docs to enum fields (NFC) (#6150)
Co-authored-by: Tyler Veness <calcmogul@gmail.com>
This commit is contained in:
@@ -5,10 +5,17 @@
|
||||
#pragma once
|
||||
|
||||
namespace frc {
|
||||
/**
|
||||
* Edge configuration.
|
||||
*/
|
||||
enum class EdgeConfiguration {
|
||||
/// No edge configuration (neither rising nor falling).
|
||||
kNone = 0,
|
||||
/// Rising edge configuration.
|
||||
kRisingEdge = 0x1,
|
||||
/// Falling edge configuration.
|
||||
kFallingEdge = 0x2,
|
||||
/// Both rising and falling edges configuration.
|
||||
kBoth = 0x3
|
||||
};
|
||||
} // namespace frc
|
||||
|
||||
Reference in New Issue
Block a user