Skip to content

Commit

Permalink
[LLCC68] Cppcheck fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgromes committed Jan 17, 2025
1 parent af34dd9 commit 21b8e5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/LLCC68/LLCC68.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ class LLCC68: public SX1262 {
\param bw LoRa bandwidth to be set in kHz.
\returns \ref status_codes
*/
int16_t setBandwidth(float bw);
int16_t setBandwidth(float bw) override;

/*!
\brief Sets LoRa spreading factor. Allowed values range from 5 to 11, depending on currently set spreading factor.
\param sf LoRa spreading factor to be set.
\returns \ref status_codes
*/
int16_t setSpreadingFactor(uint8_t sf);
int16_t setSpreadingFactor(uint8_t sf) override;

/*!
\brief Set data.
Expand Down

0 comments on commit 21b8e5a

Please sign in to comment.