From cadc27e0f593f7df44c3386b962f8962d7a81342 Mon Sep 17 00:00:00 2001 From: Serge Vakulenko Date: Wed, 22 Aug 2018 22:21:31 -0700 Subject: [PATCH] Print text messages. --- uv380.c | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/uv380.c b/uv380.c index 3bc6c1c..fb68599 100644 --- a/uv380.c +++ b/uv380.c @@ -36,10 +36,12 @@ #define NCHAN 3000 #define NCONTACTS 10000 #define NZONES 250 +#define NMESSAGES 50 #define MEMSZ 0xd0000 #define OFFSET_ID 0x02084 #define OFFSET_NAME 0x020b0 +#define OFFSET_MSG 0x02180 #define OFFSET_ZONES 0x149e0 #define OFFSET_ZONEXT 0x31000 #define OFFSET_CHANNELS 0x40000 @@ -757,7 +759,7 @@ static void uv380_print_config(FILE *out, int verbose) contact_t *ct = (contact_t*) &radio_mem[OFFSET_CONTACTS + i*36]; if (ct->name[0] == 0) { - // Channel is disabled + // Contact is disabled continue; } @@ -766,6 +768,30 @@ static void uv380_print_config(FILE *out, int verbose) fprintf(out, " %-7s %-8d %s\n", CONTACT_TYPE[ct->type], ct->id, ct->receive_tone ? "Yes" : "-"); } + + // + // Text messages. + // + fprintf(out, "\n"); + if (verbose) { + fprintf(out, "# Table of text messages.\n"); + fprintf(out, "# 1) Message number: 1-%d\n", NMESSAGES); + fprintf(out, "# 2) Text: up to 144 characters\n"); + fprintf(out, "#\n"); + } + fprintf(out, "Message Text\n"); + for (i=0; i