mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-03 03:01:44 +00:00
[docs] Fix wpilibj JavaDoc warnings (#6154)
This commit is contained in:
@@ -138,6 +138,8 @@ void HAL_AddDMACounter(HAL_DMAHandle handle, HAL_CounterHandle counterHandle,
|
||||
/**
|
||||
* Adds timer data for an counter to be collected by DMA.
|
||||
*
|
||||
* This can only be called if DMA is not started.
|
||||
*
|
||||
* @param[in] handle the dma handle
|
||||
* @param[in] counterHandle the counter to add
|
||||
* @param[out] status Error status variable. 0 on success.
|
||||
|
||||
@@ -217,12 +217,21 @@ void HAL_SetPowerDistributionSwitchableChannel(
|
||||
HAL_Bool HAL_GetPowerDistributionSwitchableChannel(
|
||||
HAL_PowerDistributionHandle handle, int32_t* status);
|
||||
|
||||
/**
|
||||
* Power distribution version.
|
||||
*/
|
||||
struct HAL_PowerDistributionVersion {
|
||||
/// Firmware major version number.
|
||||
uint32_t firmwareMajor;
|
||||
/// Firmware minor version number.
|
||||
uint32_t firmwareMinor;
|
||||
/// Firmware fix version number.
|
||||
uint32_t firmwareFix;
|
||||
/// Hardware minor version number.
|
||||
uint32_t hardwareMinor;
|
||||
/// Hardware major version number.
|
||||
uint32_t hardwareMajor;
|
||||
/// Unique ID.
|
||||
uint32_t uniqueId;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user