Skip to content

Commit ca7db91

Browse files
committed
Text color improvements.
1 parent e962246 commit ca7db91

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313

1414
### New Features: ###
1515

16+
17+
- "-t" option now accepts more values to accommodate inconsistent handling of text color control codes by different terminal emulators. The default, 1, should work with most modern terminal types. If the colors are not right, try "-t 9" to see the result of the different choices and pick the best one. If none of them look right, file a bug report and specify: operating system version (e.g. Raspbian Buster), terminal emulator type and version (e.g. LXTerminal 0.3.2). Include a screen capture.
18+
19+
1620
- "-g" option to force G3RUH mode for lower speeds where a different modem type may be the default.
1721

1822
- 2400 bps compatibility with MFJ-2400. See ***2400-4800-PSK-for-APRS-Packet-Radio.pdf*** for details

direwolf.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,14 @@ int main (int argc, char *argv[])
248248
/*
249249
* Pre-scan the command line options for the text color option.
250250
* We need to set this before any text output.
251+
* Default will be no colors if stdout is not a terminal (i.e. piped into
252+
* something else such as "tee") but command line can override this.
251253
*/
252254

253-
t_opt = 1; /* 1 = normal, 0 = no text colors. */
255+
t_opt = isatty(fileno(stdout));
256+
/* 1 = normal, 0 = no text colors. */
254257
/* 2, 3, ... alternate escape sequences for different terminals. */
258+
255259
for (j=1; j<argc-1; j++) {
256260
if (strcmp(argv[j], "-t") == 0) {
257261
t_opt = atoi (argv[j+1]);
@@ -1352,7 +1356,7 @@ static void usage (char **argv)
13521356
dw_printf (" -q Quiet (suppress output) options:\n");
13531357
dw_printf (" h h = Heard line with the audio level.\n");
13541358
dw_printf (" d d = Decoding of APRS packets.\n");
1355-
dw_printf (" -t n Text colors. 0=disabled. 1=default. 2 is good for PuTTY.\n");
1359+
dw_printf (" -t n Text colors. 0=disabled. 1=default. 2,3,4,... alternatives.\n");
13561360
dw_printf (" Use 9 to test compatibility with your terminal.\n");
13571361
dw_printf (" -a n Audio statistics interval in seconds. 0 to disable.\n");
13581362
#if __WIN32__

0 commit comments

Comments
 (0)