Output ASCII art image after all init functions (inside main_mobile.c)

This commit is contained in:
Andreas Eversberg 2019-06-30 08:10:33 +02:00
parent ea98b49372
commit f243e3a626
3 changed files with 9 additions and 2 deletions

View File

@ -5,8 +5,8 @@
* another burst of corrupted bits.
*
* There is no parity check, so it is required to check all information
* elements of each message. Messages that contain signals or digits are
* protected by repeating the digits in the information element.
* elements of each message. With NMT System: Messages that contain signals
* or digits are protected by repeating the digits in the information element.
*
* (C) 2017 by Andreas Eversberg <jolly@eversberg.eu>
* All Rights Reserved

3
libmobile/image.h Normal file
View File

@ -0,0 +1,3 @@
void print_image(void);

View File

@ -42,6 +42,7 @@
#endif
#include "../liboptions/options.h"
#include "../libfm/fm.h"
#include "image.h"
#define DEFAULT_LO_OFFSET -1000000.0
@ -494,6 +495,9 @@ void main_mobile(int *quit, int latency, int interval, void (*myhandler)(void),
if (console_open_audio(latspl))
return;
if (!loopback)
print_image();
/* real time priority */
if (rt_prio > 0) {
struct sched_param schedp;