From 217e1005ab93c63a3166042144d12676008934e1 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Mon, 11 Sep 2023 10:17:53 +0100 Subject: [PATCH] Add 1/3 coding-rate alias for LR-FHSS modulation. --- internal/backend/semtechudp/packets/push_data.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/backend/semtechudp/packets/push_data.go b/internal/backend/semtechudp/packets/push_data.go index 44cf6bcf..d74bad71 100644 --- a/internal/backend/semtechudp/packets/push_data.go +++ b/internal/backend/semtechudp/packets/push_data.go @@ -282,6 +282,8 @@ func getUplinkFrame(gatewayID lorawan.EUI64, stat *Stat, rxpk RXPK, FakeRxInfoTi cr = gw.CodeRate_CR_4_8 case "3/8": cr = gw.CodeRate_CR_3_8 + case "1/3": + cr = gw.CodeRate_CR_2_6 case "2/6": cr = gw.CodeRate_CR_2_6 case "1/4":