[docs] Fix wpilibj JavaDoc warnings (#6154)

This commit is contained in:
Tyler Veness
2024-01-05 07:35:59 -08:00
committed by GitHub
parent 19cb2a8eb4
commit 106518c3f8
97 changed files with 1112 additions and 71 deletions

View File

@@ -45,7 +45,18 @@ class I2C {
I2C(I2C&&) = default;
I2C& operator=(I2C&&) = default;
/**
* Returns I2C port.
*
* @return I2C port.
*/
Port GetPort() const;
/**
* Returns I2C device address.
*
* @return I2C device address.
*/
int GetDeviceAddress() const;
/**