LCOV - code coverage report
Current view: top level - src/modules/LR2021 - LR2021_cmds_gfsk.cpp (source / functions) Hit Total Coverage
Test: lcov.info Lines: 0 61 0.0 %
Date: 2026-02-22 10:42:45 Functions: 0 8 0.0 %

          Line data    Source code
       1             : #include "LR2021.h"
       2             : 
       3             : #include "../LR11x0/LR_common.h"
       4             : 
       5             : #include <string.h>
       6             : #include <math.h>
       7             : 
       8             : #if !RADIOLIB_EXCLUDE_LR2021
       9             : 
      10           0 : int16_t LR2021::setGfskModulationParams(uint32_t bitRate, uint8_t pulseShape, uint8_t rxBw, uint32_t freqDev) {
      11             :   uint8_t buff[] = { 
      12           0 :     (uint8_t)((bitRate >> 24) & 0xFF), (uint8_t)((bitRate >> 16) & 0xFF),
      13           0 :     (uint8_t)((bitRate >> 8) & 0xFF), (uint8_t)(bitRate & 0xFF),
      14           0 :     pulseShape, rxBw, (uint8_t)((freqDev >> 16) & 0xFF),
      15           0 :     (uint8_t)((freqDev >> 8) & 0xFF), (uint8_t)(freqDev & 0xFF),
      16           0 :   };
      17           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_MODULATION_PARAMS, true, buff, sizeof(buff)));
      18             : }
      19             : 
      20           0 : int16_t LR2021::setGfskPacketParams(uint16_t preambleLen, uint8_t preambleDetect, bool longPreamble, bool pldLenBits, uint8_t addrComp, uint8_t packetFormat, uint16_t payloadLen, uint8_t crc, uint8_t dcFree) {
      21             :   uint8_t buff[] = { 
      22           0 :     (uint8_t)((preambleLen >> 8) & 0xFF), (uint8_t)(preambleLen & 0xFF), preambleDetect,
      23           0 :     (uint8_t)(((uint8_t)longPreamble << 5) | ((uint8_t)pldLenBits << 4) | (addrComp << 2) | ((uint8_t)packetFormat & 0x03)),
      24           0 :     (uint8_t)((payloadLen >> 8) & 0xFF), (uint8_t)(payloadLen & 0xFF),
      25           0 :     (uint8_t)((crc << 4) | (dcFree << 4)),
      26           0 :   };
      27           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_PACKET_PARAMS, true, buff, sizeof(buff)));
      28             : }
      29             : 
      30           0 : int16_t LR2021::setGfskWhiteningParams(uint8_t whitenType, uint16_t init) {
      31             :   uint8_t buff[] = { 
      32           0 :     (uint8_t)((whitenType << 4) | (uint8_t)((init >> 8) & 0x0F)),
      33             :     (uint8_t)(init & 0xFF),
      34           0 :   };
      35           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_WHITENING_PARAMS, true, buff, sizeof(buff)));
      36             : }
      37             : 
      38           0 : int16_t LR2021::setGfskCrcParams(uint32_t poly, uint32_t init) {
      39             :   uint8_t buff[] = { 
      40           0 :     (uint8_t)((poly >> 24) & 0xFF), (uint8_t)((poly >> 16) & 0xFF),
      41           0 :     (uint8_t)((poly >> 8) & 0xFF), (uint8_t)(poly & 0xFF),
      42           0 :     (uint8_t)((init >> 24) & 0xFF), (uint8_t)((init >> 16) & 0xFF),
      43           0 :     (uint8_t)((init >> 8) & 0xFF), (uint8_t)(init & 0xFF),
      44           0 :   };
      45           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_CRC_PARAMS, true, buff, sizeof(buff)));
      46             : }
      47             : 
      48           0 : int16_t LR2021::setGfskSyncword(const uint8_t* syncWord, size_t syncWordLen, bool msbFirst) {
      49           0 :   uint8_t buff[9] = { 0 };
      50           0 :   for(int8_t i = 7; i >= (int8_t) (RADIOLIB_LR2021_GFSK_SYNC_WORD_LEN - syncWordLen); i--) {
      51           0 :     buff[i] = syncWord[i - (int8_t) (RADIOLIB_LR2021_GFSK_SYNC_WORD_LEN - syncWordLen)];
      52             :   }
      53           0 :   buff[8] = (uint8_t)msbFirst << 7 | ((syncWordLen*8) & 0x7F);
      54           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_SYNCWORD, true, buff, sizeof(buff)));
      55             : }
      56             : 
      57           0 : int16_t LR2021::setGfskAddress(uint8_t addrNode, uint8_t addrBroadcast) {
      58           0 :   uint8_t buff[] = { addrNode, addrBroadcast };
      59           0 :   return(this->SPIcommand(RADIOLIB_LR2021_CMD_SET_GFSK_ADDRESS, true, buff, sizeof(buff)));
      60             : }
      61             : 
      62           0 : int16_t LR2021::getGfskRxStats(uint16_t* packetRx, uint16_t* packetCrcError, uint16_t* lenError, uint16_t* preambleDet, uint16_t* syncOk, uint16_t* syncFail, uint16_t* timeout) {
      63           0 :   uint8_t buff[14] = { 0 };
      64           0 :   int16_t state = this->SPIcommand(RADIOLIB_LR2021_CMD_GET_GFSK_RX_STATS, false, buff, sizeof(buff));
      65           0 :   if(packetRx) { *packetRx = ((uint16_t)(buff[0]) << 8) | (uint16_t)buff[1]; }
      66           0 :   if(packetCrcError) { *packetCrcError = ((uint16_t)(buff[2]) << 8) | (uint16_t)buff[3]; }
      67           0 :   if(lenError) { *lenError = ((uint16_t)(buff[4]) << 8) | (uint16_t)buff[5]; }
      68           0 :   if(preambleDet) { *preambleDet = ((uint16_t)(buff[6]) << 8) | (uint16_t)buff[7]; }
      69           0 :   if(syncOk) { *syncOk = ((uint16_t)(buff[8]) << 8) | (uint16_t)buff[9]; }
      70           0 :   if(syncFail) { *syncFail = ((uint16_t)(buff[10]) << 8) | (uint16_t)buff[11]; }
      71           0 :   if(timeout) { *timeout = ((uint16_t)(buff[12]) << 8) | (uint16_t)buff[13]; }
      72           0 :   return(state);
      73             : }
      74             : 
      75           0 : int16_t LR2021::getGfskPacketStatus(uint16_t* packetLen, float* rssiAvg, float* rssiSync, bool* addrMatchNode, bool* addrMatchBroadcast, float* lqi) {
      76           0 :   uint8_t buff[6] = { 0 };
      77           0 :   int16_t state = this->SPIcommand(RADIOLIB_LR2021_CMD_GET_GFSK_PACKET_STATUS, false, buff, sizeof(buff));
      78             :   uint16_t raw;
      79           0 :   if(packetLen) { *packetLen = ((uint16_t)(buff[0]) << 8) | (uint16_t)buff[1]; }
      80           0 :   if(rssiAvg) {
      81           0 :     raw = (uint16_t)buff[2] << 1;
      82           0 :     raw |= (buff[4] & 0x04) >> 2;
      83           0 :     *rssiAvg = (float)raw / -2.0f;
      84             :   }
      85           0 :   if(rssiSync) {
      86           0 :     raw = (uint16_t)buff[3] << 1;
      87           0 :     raw |= (buff[4] & 0x01);
      88           0 :     *rssiSync = (float)raw / -2.0f;
      89             :   }
      90           0 :   if(addrMatchNode) { *addrMatchNode = (buff[4] & 0x10); }
      91           0 :   if(addrMatchBroadcast) { *addrMatchBroadcast = (buff[4] & 0x20); }
      92           0 :   if(lqi) { *lqi = buff[5] * 4.0f; }
      93           0 :   return(state);
      94             : }
      95             : 
      96             : #endif

Generated by: LCOV version 1.14