diff mbox series

libdvbv5: Correction to LNB range for 10750 LNBs in common use in Australia and New Zealand

Message ID 013d5d5d54a0f1ac517d05c857513c8a@openmedia.co.nz (mailing list archive)
State New
Headers show
Series libdvbv5: Correction to LNB range for 10750 LNBs in common use in Australia and New Zealand | expand

Commit Message

Steven Ellis Feb. 24, 2025, 10:09 a.m. UTC
Currently performing a dvbv5-scan or dvbv5-tune produces errors if you 
use the LNB type L10750 as the upper frequency range is too low. Common 
LNBs used for SkyTV NZ and similar services in Australia have an upper 
range of 12750.

Example
  - https://www.dishtv.co.nz/LNB107KU

Here is a patch against the current git tree.

Steven


         }, {
                 .desc = {
diff mbox series

Patch

diff --git a/lib/libdvbv5/dvb-sat.c b/lib/libdvbv5/dvb-sat.c
index 36a42344..817a82e7 100644
--- a/lib/libdvbv5/dvb-sat.c
+++ b/lib/libdvbv5/dvb-sat.c
@@ -129,11 +129,11 @@  static const struct dvb_sat_lnb_priv lnb_array[] = 
{
                         // Legacy fields - kept just to avoid API/ABI 
breakages
                         .lowfreq = 10750,
                         .freqrange = {
-                               { 11700, 12200 }
+                               { 11700, 12750 }
                         },
                 },
                 .freqrange = {
-                      { 11700, 12200, 10750, 0 }
+                      { 11700, 12750, 10750, 0 }
                 },