Skip to content

Commit

Permalink
[hal] Remove incorrect parameter directions on a few functions
Browse files Browse the repository at this point in the history
  • Loading branch information
rzblue committed Aug 28, 2024
1 parent 9f3da8d commit e312b64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hal/src/main/native/include/hal/AnalogGyro.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ void HAL_SetupAnalogGyro(HAL_GyroHandle handle, int32_t* status);
/**
* Frees an analog gyro.
*
* @param[in,out] handle the gyro handle
* @param handle the gyro handle
*/
void HAL_FreeAnalogGyro(HAL_GyroHandle handle);

Expand Down
2 changes: 1 addition & 1 deletion hal/src/main/native/include/hal/AnalogInput.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ HAL_AnalogInputHandle HAL_InitializeAnalogInputPort(
/**
* Frees an analog input port.
*
* @param[in,out] analogPortHandle Handle to the analog port.
* @param analogPortHandle Handle to the analog port.
*/
void HAL_FreeAnalogInputPort(HAL_AnalogInputHandle analogPortHandle);

Expand Down
2 changes: 1 addition & 1 deletion hal/src/main/native/include/hal/CANAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ HAL_CANHandle HAL_InitializeCAN(HAL_CANManufacturer manufacturer,
/**
* Frees a CAN device
*
* @param[in,out] handle the CAN handle
* @param handle the CAN handle
*/
void HAL_CleanCAN(HAL_CANHandle handle);

Expand Down

0 comments on commit e312b64

Please sign in to comment.