main_common: Move init and cleanup function to main function

This commit is contained in:
Andreas Eversberg
2017-03-04 07:12:12 +01:00
parent 4201717f36
commit 3fc4fc54be
7 changed files with 20 additions and 59 deletions

View File

@@ -166,10 +166,6 @@ int main(int argc, char *argv[])
if (!loopback)
print_image();
/* init functions */
rc = init_common(station_id, 5);
if (rc < 0)
goto fail;
dsp_init();
anetz_init();
@@ -183,12 +179,9 @@ int main(int argc, char *argv[])
printf("Base station on channel %d ready, please tune transmitter to %.3f MHz and receiver to %.3f MHz.\n", kanal[i], anetz_kanal2freq(kanal[i], 0) / 1e6, anetz_kanal2freq(kanal[i], 1) / 1e6);
}
main_common(&quit, latency, interval, NULL);
main_common(&quit, latency, interval, NULL, station_id, 5);
fail:
/* cleanup functions */
cleanup_common();
/* destroy transceiver instance */
while (sender_head)
anetz_destroy(sender_head);