Skip to content

Commit

Permalink
[SX128x] Add setDataRate method for LoRa modem (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobeva authored Oct 2, 2024
1 parent 46a086c commit 6e66570
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/modules/SX128x/SX128x.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -904,6 +904,22 @@ int16_t SX128x::setPreambleLength(uint32_t preambleLength) {
return(RADIOLIB_ERR_WRONG_MODEM);
}

int16_t SX128x::setDataRate(DataRate_t dr) {
// check active modem
uint8_t modem = getPacketType();
int16_t state = RADIOLIB_ERR_NONE;
if (modem == RADIOLIB_SX128X_PACKET_TYPE_LORA) {
state = this->setBandwidth(dr.lora.bandwidth);
RADIOLIB_ASSERT(state);
state = this->setSpreadingFactor(dr.lora.spreadingFactor);
RADIOLIB_ASSERT(state);
state = this->setCodingRate(dr.lora.codingRate);
} else {
return(RADIOLIB_ERR_WRONG_MODEM);
}
return(state);
}

int16_t SX128x::setBitRate(float br) {
// check active modem
uint8_t modem = getPacketType();
Expand Down
7 changes: 7 additions & 0 deletions src/modules/SX128x/SX128x.h
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,13 @@ class SX128x: public PhysicalLayer {
*/
int16_t setPreambleLength(uint32_t preambleLength);

/*!
\brief Set data rate.
\param dr Data rate struct. Interpretation depends on currently active modem (FSK or LoRa).
\returns \ref status_codes
*/
int16_t setDataRate(DataRate_t dr) override;

/*!
\brief Sets FSK or FLRC bit rate. Allowed values are 125, 250, 400, 500, 800, 1000,
1600 and 2000 kbps (for FSK modem) or 260, 325, 520, 650, 1000 and 1300 (for FLRC modem).
Expand Down

0 comments on commit 6e66570

Please sign in to comment.