[SX123x] Added note about high bit rate mode for SX1233

This commit is contained in:
jgromes 2023-12-09 16:12:10 +01:00
parent 57a6a9ccc3
commit a30d3da296
2 changed files with 3 additions and 1 deletions

View file

@ -17,7 +17,7 @@ int16_t SX1233::begin(float freq, float br, float freqDev, float rxBw, int8_t po
bool flagFound = false;
while((i < 10) && !flagFound) {
int16_t version = getChipVersion();
if((version == 0x21) || (version == 0x22) || (version == 0x23)) {
if((version == RADIOLIB_SX123X_CHIP_REVISION_2_A) || (version == RADIOLIB_SX123X_CHIP_REVISION_2_B) || (version == RADIOLIB_SX123X_CHIP_REVISION_2_C)) {
flagFound = true;
this->chipRevision = version;
} else {

View file

@ -43,6 +43,8 @@ class SX1233: public SX1231 {
/*!
\brief Sets bit rate. Allowed values range from 0.5 to 300.0 kbps.
SX1233 also allows 500 kbps and 600 kbps operation.
NOTE: For 500 kbps rate, the receiver frequency should be offset by 50 kHz from the transmitter.
For 600 kbps rate, the receiver frequency should be offset by 40 kHz from the transmitter.
\param br Bit rate to be set in kbps.
\returns \ref status_codes
*/