Skip to content

Commit

Permalink
Fix doxygen warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
AEFeinstein committed Oct 16, 2023
1 parent ea52d63 commit 90b6ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/hdw-imu/hdw-imu.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void mathQuatNormalize(float* qout, const float* qin)
*
* @param p Pointer to the float[3] output of the cross product (p = a x b)
* @param a Pointer to the float[3] of the cross product a vector.
* @param a Pointer to the float[3] of the cross product b vector.
* @param b Pointer to the float[3] of the cross product b vector.
*/
void mathCrossProduct(float* p, const float* a, const float* b)
{
Expand Down
4 changes: 2 additions & 2 deletions components/hdw-imu/include/hdw-imu.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* we run the IMU at 208 Hz, and we use the hardware FIFO built into the LSM6DSL to queue up events. Then, every
* frame, we empty out the FIFO.
*
* \section accel_usage Usage
* \section imu_usage Usage
*
* The core system will call initAccelerometer() and deInitAccelerometer() appropriately. And you can at any point
* call any of the proper IMU / accel functions.
Expand All @@ -22,7 +22,7 @@
* You can, of course at any time call:
* esp_err_t accelIntegrate();
*
* \section accel_example Example
* \section imu_example Example
*
* \code{.c}
* // Declare variables to receive rotation
Expand Down

0 comments on commit 90b6ffe

Please sign in to comment.