mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
[wpilib] Improve PDP comments (NFC) (#3427)
Also remove HAL doxygen comments from sources; these functions already had more descriptive comments in their corresponding headers.
This commit is contained in:
@@ -20,7 +20,18 @@ class SendableBuilder;
|
||||
class PowerDistributionPanel : public Sendable,
|
||||
public SendableHelper<PowerDistributionPanel> {
|
||||
public:
|
||||
/**
|
||||
* Constructs a PowerDistributionPanel.
|
||||
*
|
||||
* Uses the default CAN ID (0).
|
||||
*/
|
||||
PowerDistributionPanel();
|
||||
|
||||
/**
|
||||
* Constructs a PowerDistributionPanel.
|
||||
*
|
||||
* @param module The CAN ID of the PDP
|
||||
*/
|
||||
explicit PowerDistributionPanel(int module);
|
||||
|
||||
PowerDistributionPanel(PowerDistributionPanel&&) = default;
|
||||
|
||||
Reference in New Issue
Block a user