NMT-900 System implementation

NMT can now be run as 450 or 900 Network.
This commit is contained in:
Andreas Eversberg
2017-07-22 10:38:18 +02:00
parent 0c9de251be
commit 3274812eab
8 changed files with 498 additions and 194 deletions

View File

@@ -1,7 +1,7 @@
void nmt_country_list(void);
int nmt_country_by_short_name(const char *short_name);
const char *nmt_long_name_by_short_name(const char *short_name);
int nmt_ta_by_short_name(const char *short_name, int ta);
double nmt_channel2freq(const char *short_name, int channel, int uplink, double *deviation_factor, int *scandinavia, int *tested);
void nmt_country_list(int nmt_system);
int nmt_country_by_short_name(int nmt_system, const char *short_name);
const char *nmt_long_name_by_short_name(int nmt_system, const char *short_name);
int nmt_ta_by_short_name(int nmt_system, const char *short_name, int ta);
double nmt_channel2freq(int nmt_system, const char *short_name, int channel, int uplink, double *deviation_factor, int *scandinavia, int *tested);