Skip to content

Commit

Permalink
Update satellite initial scan frequencies
Browse files Browse the repository at this point in the history
Update the built-in hardcoded initial scan frequencies and tuning parameters.
Change the frequency for Eutelsat 7E to 10721MHz
Added Thor 5/6/7 at 0.8W.
  • Loading branch information
kmdewaal committed Jun 28, 2023
1 parent ce8003a commit 6de6f00
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions mythtv/libs/libmythtv/channelscan/channelscanmiscsettings.h
Expand Up @@ -231,11 +231,12 @@ class ScanTransponder: public TransMythUIComboBoxSetting
addSelection("(Select Satellite)", "Select", true);

// Satellite tuning data
m_tdm["1 E7"] = { "1 E7", "Eutelsat 7.0E", "10804000", "v", "30000000", "QPSK", "DVB-S2", "5/6" };
m_tdm["2 HB"] = { "2 HB", "Hotbird 13.0E", "12015000", "h", "27500000", "8PSK", "DVB-S2", "3/4" };
m_tdm["3 A1"] = { "3 A1", "Astra-1 19.2E", "11229000", "v", "22000000", "8PSK", "DVB-S2", "2/3" };
m_tdm["4 A3"] = { "4 A3", "Astra-3 23.5E", "12031500", "h", "27500000", "QPSK", "DVB-S2", "auto"};
m_tdm["5 A2"] = { "5 A2", "Astra-2 28.2E", "10714000", "h", "22000000", "QPSK", "DVB-S", "5/6" };
m_tdm["1 TH"] = { "1 TH", "Thor 5/6/7 0.8W", "10872000", "h", "25000000", "8PSK", "DVB-S2", "3/4" };
m_tdm["2 E7"] = { "2 E7", "Eutelsat 7.0E", "10721000", "h", "22000000", "QPSK", "DVB-S", "3/4" };
m_tdm["3 HB"] = { "3 HB", "Hotbird 13.0E", "12015000", "h", "27500000", "8PSK", "DVB-S2", "3/4" };
m_tdm["4 A1"] = { "4 A1", "Astra-1 19.2E", "11229000", "v", "22000000", "8PSK", "DVB-S2", "2/3" };
m_tdm["5 A3"] = { "5 A3", "Astra-3 23.5E", "12031500", "h", "27500000", "QPSK", "DVB-S2", "auto"};
m_tdm["6 A2"] = { "6 A2", "Astra-2 28.2E", "10714000", "h", "22000000", "QPSK", "DVB-S", "5/6" };

for (auto &td: m_tdm)
{
Expand Down

1 comment on commit 6de6f00

@bennettpeter
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note the same table exists at


I will change it to match your change.

Please sign in to comment.