From 742d046c406b13aa19e1869bdd3ac27328168649 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Sun, 30 Jun 2019 19:46:00 -0400 Subject: [PATCH] Clarifying comments. --- decode_aprs.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/decode_aprs.c b/decode_aprs.c index a91087f..89b56f7 100644 --- a/decode_aprs.c +++ b/decode_aprs.c @@ -4634,6 +4634,9 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen) * Outputs: stdout * * Description: Compile like this to make a standalone test program. + * Just run "make" and this will be built along with everything else. + * The point I'm trying to make is that DECAMAIN must be defined + * to enable the main program here for a standalone application. * * gcc -o decode_aprs -DDECAMAIN decode_aprs.c ax25_pad.c ... * @@ -4752,6 +4755,7 @@ int main (int argc, char *argv[]) } } + // If you don't like the text colors, use 0 instead of 1 here. text_color_init(1); text_color_set(DW_COLOR_INFO);