Skip to content

Commit

Permalink
Fixed more doxygen errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jkerpe committed Nov 16, 2023
1 parent 3fc06ca commit c48fc77
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
2 changes: 0 additions & 2 deletions lib/HALConvoyLeaderTarget/ConvoyLeaderIMU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
/**
* @brief IMU implementation for ConvoyLeader Application
* @author Juliane Kerpe <[email protected]>
*
* @{
*/

/******************************************************************************
Expand Down
6 changes: 3 additions & 3 deletions lib/HALInterfaces/IIMU.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@
* Types and Classes
*****************************************************************************/

/** Struct of the raw and not yet converted IMU (=accelerometer, gyro or magnetometer) values in digits in x, y and z
* direction. */
/** Struct of the raw and not yet converted IMU Data (=accelerometer, gyro or magnetometer values)
* in digits in x, y and z direction. */
typedef struct _IMUData
{
int16_t valueX; /**< Raw sensor value in x direction in digits */
int16_t valueY; /**< Raw sensor value in y direction in digits */
int16_t valueZ; /**< Raw sensor value in z direction in digits */
} __attribute__((packed)) IMUData;
} IMUData;

/** The abstract IMU interface.
* IMU stands for Inertial Measurement Unit.
Expand Down
1 change: 0 additions & 1 deletion lib/HALLineFollowerTarget/LineFollowerIMU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* @brief IMU implementation for LineFollower Application
* @author Juliane Kerpe <[email protected]>
*
*/

/******************************************************************************
Expand Down
1 change: 0 additions & 1 deletion lib/HALRemoteControlTarget/RemoteControlIMU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
/**
* @brief IMU implementation for RemoteControl Application
* @author Juliane Kerpe <[email protected]>
*
*/

/******************************************************************************
Expand Down
2 changes: 1 addition & 1 deletion lib/HALTarget/IMU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ bool IMU::init()
if (true == isInitSuccessful)
{
m_imuDrv.enableDefault();
/* TODO: TD074 Make sure that a Full Scale of 245 dps of the gyros are enough */
/* TODO: TD074 Make sure that a Full Scale of 245 dps of the gyros are enough */
/* TODO: TD075 Make sure that it is valid to make the Full Scale setting in IMU::init() */
switch (m_imuDrv.getType())
{
Expand Down

0 comments on commit c48fc77

Please sign in to comment.