mirror of
https://github.com/meshtastic/firmware.git
synced 2025-08-02 03:45:46 +00:00

* If chip was not found, return false for init() * SX1268: Only overwrite frequency when out of bounds Happens when region is still UNSET
18 lines
539 B
C++
18 lines
539 B
C++
#include "SX1268Interface.h"
|
|
#include "configuration.h"
|
|
#include "error.h"
|
|
|
|
SX1268Interface::SX1268Interface(RADIOLIB_PIN_TYPE cs, RADIOLIB_PIN_TYPE irq, RADIOLIB_PIN_TYPE rst, RADIOLIB_PIN_TYPE busy,
|
|
SPIClass &spi)
|
|
: SX126xInterface(cs, irq, rst, busy, spi)
|
|
{
|
|
}
|
|
|
|
float SX1268Interface::getFreq()
|
|
{
|
|
// Set frequency to default of EU_433 if outside of allowed range (e.g. when region is UNSET)
|
|
if (savedFreq < 410 || savedFreq > 810)
|
|
return 433.125f;
|
|
else
|
|
return savedFreq;
|
|
} |