Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ike-kazu committed May 27, 2024
1 parent 00034f9 commit 2d1ce68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VelodyneSensor
virtual bool fillAzimuthCache() { return false; }

// calculate the corrected azimuth from each firing timing.
/// @brief each VLP calculating code sample in user manual. If you know details, see commens in each <vlp_list>.hpp file.
/// @brief each VLP calculating sample code and formula in user manual. If you know details, see commens in each <vlp_list>.hpp file.
virtual uint16_t getAzimuthCorrected(
uint16_t azimuth, float azimuth_diff, int firing_sequence, int firing_order) = 0;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace drivers
class VLP16 : public VelodyneSensor
{
public:
/// @brief fomula from VLP16 User manual in p.64
/// @brief formula from VLP16 User manual in p.64
/// @param azimuth Azimuth angle
/// @param azimuth_diff Azimuth difference
/// @param firing_sequence Firing sequence
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VLP32 : public VelodyneSensor
return true;
}

/// @brief fomula from VLP32 User manual in p.62
/// @brief formula from VLP32 User manual in p.62
/// @param azimuth Azimuth angle
/// @param azimuth_diff Azimuth difference between a current azimuth and a next azimuth
/// @param firing_order Firing order
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class VLS128 : public VelodyneSensor
return true;
}

/// @brief fomula from VLS128 User manual in p.65
/// @brief formula from VLS128 User manual in p.65
/// @param azimuth Azimuth angle
/// @param azimuth_diff Azimuth difference
/// @param firing_order Firing order
Expand Down

0 comments on commit 2d1ce68

Please sign in to comment.