add ifdef HAB for aprs icon

sr-frs-rx
Alan Johnston 2 years ago committed by GitHub
parent 378676698e
commit 7b7e332a40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,9 +20,10 @@
*/
#include "main.h"
#define HAB
int main(int argc, char * argv[]) {
@ -1006,8 +1007,12 @@ void get_tlm(void) {
if (ax5043)
sprintf(header_str2b, "=%s%c%sShi hi ", header_lat, 0x5c, header_long); // add APRS lat and long
else
sprintf(header_str2b, "=%s%c%c%sShi hi ", header_lat, 0x5c, 0x5c, header_long); // add APRS lat and long
// sprintf(header_str2b, "=%s%c%sOhi hi ", header_lat, 0x2f, header_long); // add APRS lat and long with Balloon
#ifdef HAB
sprintf(header_str2b, "=%s%c%sOhi hi ", header_lat, 0x2f, header_long); // add APRS lat and long with Balloon HAB icon
#else
sprintf(header_str2b, "=%s%c%c%sShi hi ", header_lat, 0x5c, 0x5c, header_long); // add APRS lat and long with Satellite icon
#endif
printf("\n\nString is %s \n\n", header_str2b);
strcat(str, header_str2b);
} else {

Loading…
Cancel
Save

Powered by TurnKey Linux.