#include "Si4430.h" #if !defined(RADIOLIB_EXCLUDE_SI443X) Si4430::Si4430(Module* mod) : Si4432(mod) { } int16_t Si4430::begin(float freq, float br, float freqDev, float rxBw, int8_t power, uint8_t preambleLen) { // execute common part int16_t state = Si443x::begin(br, freqDev, rxBw, preambleLen); RADIOLIB_ASSERT(state); RADIOLIB_DEBUG_PRINTLN(F("M\tSi4430")); // configure publicly accessible settings state = setFrequency(freq); RADIOLIB_ASSERT(state); state = setOutputPower(power); RADIOLIB_ASSERT(state); return(state); } int16_t Si4430::setFrequency(float freq) { RADIOLIB_CHECK_RANGE(freq, 900.0, 960.0, RADIOLIB_ERR_INVALID_FREQUENCY); // set frequency return(Si443x::setFrequencyRaw(freq)); } int16_t Si4430::setOutputPower(int8_t power) { RADIOLIB_CHECK_RANGE(power, -8, 13, RADIOLIB_ERR_INVALID_OUTPUT_POWER); // set output power return(_mod->SPIsetRegValue(RADIOLIB_SI443X_REG_TX_POWER, (uint8_t)((power + 8) / 3), 2, 0)); } #endif