/*
Band table
YOU CAN CONFIGURE YOUR OWN BAND PLAN. Be guided by the comments.
To add a new band, all you have to do is insert a new line in the table below. No extra code will be needed.
You can remove a band by deleting a line if you do not want a given band.
Also, you can change the parameters of the band.
ATTENTION: You have to RESET the eeprom after adding or removing a line of this table.
Turn your receiver on with the encoder push button pressed at first time to RESET the eeprom content.
*/
Band band[] = {
{ MW_BAND_TYPE, 540, 1720, 750, 3, 4 }, // AM/MW from 540 to 1720kHz; default 750kHz; default step frequency index is 3 (10kHz); default bandwidth index is 4 (3kHz)
{ SW_BAND_TYPE, 1800, 2000, 1800, 0, 2 }, // 160 meters
{ SW_BAND_TYPE, 3500, 4000, 3600, 0, 2 }, // 80 meters
{ SW_BAND_TYPE, 7000, 7300, 7125, 0, 2 }, // 40 meters
{ SW_BAND_TYPE, 14000, 14350, 14150, 0, 2 }, // 20 meters
{ SW_BAND_TYPE, 18068, 18168, 18110, 0, 2 }, // 17 meters
{ SW_BAND_TYPE, 21000, 21450, 21200, 0, 2 }, // 15 meters
{ SW_BAND_TYPE, 24890, 24990, 24930, 0, 2 }, // 12 meters
{ SW_BAND_TYPE, 26965, 27405, 27025, 3, 2 }, // CB band (11 meters)
{ SW_BAND_TYPE, 28000, 29700, 28300, 0, 2 }, // 10 meters
{ SW_BAND_TYPE, 2300, 2495, 2300, 0, 2 }, // 120m SW 2.3β2.495
{ SW_BAND_TYPE, 3200, 3400, 3200, 0, 2 }, // 90m SW 3.2β3.4
{ SW_BAND_TYPE, 3900, 4000, 3900, 0, 2 }, // 75m SW 3.9β4
{ SW_BAND_TYPE, 4750, 4995, 4750, 0, 2 }, // 60m SW 4.75β4.995
{ SW_BAND_TYPE, 5900, 6200, 5900, 0, 2 }, // 49m SW 5.9β6.2
{ SW_BAND_TYPE, 7200, 7450, 7200, 0, 2 }, // 41m SW 7.2β7.45
{ SW_BAND_TYPE, 9400, 9900, 9400, 0, 2 }, // 31m SW 9.4β9.9
{ SW_BAND_TYPE, 11600, 12100, 11600, 0, 2 }, // 25m SW 11.6β12.1
{ SW_BAND_TYPE, 13570, 13870, 13570, 0, 2 }, // 22m SW 13.57β13.87
{ SW_BAND_TYPE, 15100, 15830, 15100, 0, 2 }, // 19m SW 15.1β15.83
{ SW_BAND_TYPE, 17480, 17900, 17480, 0, 2 }, // 16m SW 17.48β17.9
{ SW_BAND_TYPE, 21450, 21850, 21450, 0, 2 }, // 13m SW 21.45β21.85
{ SW_BAND_TYPE, 25670, 26100, 25670, 0, 2 }, // 11m SW 25.67β26.1
{ SW_BAND_TYPE, 2500, 2500, 2500, 0, 4 }, // WWV 2.5Hz
{ SW_BAND_TYPE, 5000, 5000, 5000, 0, 4 }, // WWV 5Hz
{ SW_BAND_TYPE, 10000, 10000, 10000, 0, 4 }, // WWV 10Hz
{ SW_BAND_TYPE, 15000, 15000, 15000, 0, 4 }, // WWV 15Hz
{ SW_BAND_TYPE, 20000, 20000, 20000, 0, 4 }, // WWV 20Hz
{ SW_BAND_TYPE, 25000, 25000, 25000, 0, 4 }, // WWV 25Hz
{ SW_BAND_TYPE, 1800, 30000, 1800, 0, 3 }, // All 1.8 Mhz to 30 Mhz
{ FM_BAND_TYPE, 8400, 10800, 10150, 3, 0 }
};