Skip to content

Commit

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

/*!
\brief Sets LoRa spreading factor. Allowed values range from 5 to 12.
\param sf LoRa spreading factor to be set.
\returns \ref status_codes
*/
int16_t setSpreadingFactor(uint8_t sf);
virtual int16_t setSpreadingFactor(uint8_t sf);

/*!
\brief Sets LoRa coding rate denominator. Allowed values range from 5 to 8.
Expand Down

0 comments on commit 3354cd8

Please sign in to comment.