Skip to content

Commit a4d87e4

Browse files
committed
New function to generate APRS "message."
1 parent 7fc9f31 commit a4d87e4

File tree

2 files changed

+85
-1
lines changed

2 files changed

+85
-1
lines changed

encode_aprs.c

+84-1
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,63 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
759759
} /* end encode_object */
760760

761761

762+
763+
/*------------------------------------------------------------------
764+
*
765+
* Name: encode_message
766+
*
767+
* Purpose: Construct info part for APRS "message" format.
768+
*
769+
* Inputs: addressee - Addressed to, up to 9 characters.
770+
* text - Text part of the message.
771+
* id - Identifier, 0 to 5 characters.
772+
* result_size - Ammount of space for result, provided by
773+
* caller, to avoid buffer overflow.
774+
*
775+
* Outputs: presult - Stored here.
776+
*
777+
* Returns: Number of characters in result.
778+
*
779+
* Description:
780+
*
781+
*----------------------------------------------------------------*/
782+
783+
784+
typedef struct aprs_message_s {
785+
char dti; /* : Data Type Indicator */
786+
char addressee[9]; /* Fixed width 9 characters. */
787+
char sep; /* : separator */
788+
char text;
789+
} aprs_message_t;
790+
791+
int encode_message (char *addressee, char *text, char *id, char *presult, size_t result_size)
792+
{
793+
aprs_message_t *p = (aprs_object_t *) presult;
794+
int n;
795+
796+
p->dti = ':';
797+
798+
memset (p->addressee, ' ', sizeof(p->addressee));
799+
n = strlen(addressee);
800+
if (n > (int)(sizeof(p->addressee))) n = sizeof(p->addressee);
801+
memcpy (p->addressee, addressee, n);
802+
803+
p->sep = ':';
804+
p->text = '\0';
805+
806+
strlcat (presult, text, result_size);
807+
if (strlen(id) > 0) {
808+
strlcat (presult, "{", result_size);
809+
strlcat (presult, id, result_size);
810+
}
811+
812+
return (strlen(presult));
813+
814+
} /* end encode_message */
815+
816+
817+
818+
762819
/*------------------------------------------------------------------
763820
*
764821
* Name: main
@@ -767,7 +824,7 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
767824
*
768825
* Description: Just a smattering, not an organized test.
769826
*
770-
* $ rm a.exe ; gcc -DEN_MAIN encode_aprs.c latlong.c textcolor.c ; ./a.exe
827+
* $ rm a.exe ; gcc -DEN_MAIN encode_aprs.c latlong.c textcolor.c misc.a ; ./a.exe
771828
*
772829
*----------------------------------------------------------------*/
773830

@@ -881,9 +938,35 @@ int main (int argc, char *argv[])
881938
exit (EXIT_FAILURE);
882939
}
883940

941+
942+
/*********** Message. ***********/
943+
944+
945+
encode_message ("N2GH", "some stuff", "", result, sizeof(result));
946+
dw_printf ("%s\n", result);
947+
if (strcmp(result, ":N2GH :some stuff") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
948+
949+
950+
encode_message ("N2GH", "other stuff", "12345", result, sizeof(result));
951+
dw_printf ("%s\n", result);
952+
if (strcmp(result, ":N2GH :other stuff{12345") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
953+
954+
955+
encode_message ("WB2OSZ-123", "other stuff", "12345", result, sizeof(result));
956+
dw_printf ("%s\n", result);
957+
if (strcmp(result, ":WB2OSZ-12:other stuff{12345") != 0) { dw_printf ("ERROR! line %d\n", __LINE__); errors++; }
958+
959+
960+
if (errors != 0) {
961+
text_color_set (DW_COLOR_ERROR);
962+
dw_printf ("Encode APRS test FAILED with %d errors.\n", errors);
963+
exit (EXIT_FAILURE);
964+
}
965+
884966
text_color_set (DW_COLOR_REC);
885967
dw_printf ("Encode APRS test PASSED with no errors.\n");
886968
exit (EXIT_SUCCESS);
969+
887970

888971
} /* end main */
889972

encode_aprs.h

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ int encode_object (char *name, int compressed, time_t thyme, double lat, double
1414
float freq, float tone, float offset, char *comment,
1515
char *presult, size_t result_size);
1616

17+
int encode_message (char *addressee, char *text, char *id, char *presult, size_t result_size);

0 commit comments

Comments
 (0)