Skip to content

Commit a558348

Browse files
committed
UTF-8 in config file experiment.
1 parent 0bd31ae commit a558348

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

src/config.c

+41
Original file line numberDiff line numberDiff line change
@@ -1694,6 +1694,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16941694
text_color_set(DW_COLOR_INFO);
16951695
dw_printf ("Line %d: Using a FIX_BITS value greater than %d is not recommended for normal operation.\n",
16961696
line, DEFAULT_FIX_BITS);
1697+
dw_printf ("FIX_BITS > 1 was an interesting experiment but turned out to be a bad idea.\n");
1698+
dw_printf ("Don't be surprised if it takes 100%% CPU, direwolf can't keep up with the audio stream,\n");
1699+
dw_printf ("and you see messages like \"Audio input device 0 error code -32: Broken pipe\"\n");
16971700
}
16981701

16991702
t = split(NULL,0);
@@ -5525,6 +5528,44 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
55255528
strlcpy (keyword, t, sizeof(keyword));
55265529
strlcpy (value, e+1, sizeof(value));
55275530

5531+
// QUICK TEMP EXPERIMENT, maybe permanent new feature.
5532+
// Recognize \xnn as hexadecimal value. Handy for UTF-8 in comment.
5533+
// Maybe recognize the <0xnn> form that we print.
5534+
//
5535+
// # Convert between languages here: https://translate.google.com/ then
5536+
// # Convert to UTF-8 bytes here: https://codebeautify.org/utf8-converter
5537+
//
5538+
// pbeacon delay=0:05 every=0:30 sendto=R0 lat=12.5N long=69.97W comment="\xe3\x82\xa2\xe3\x83\x9e\xe3\x83\x81\xe3\x83\xa5\xe3\x82\xa2\xe7\x84\xa1\xe7\xb7\x9a \xce\xa1\xce\xb1\xce\xb4\xce\xb9\xce\xbf\xce\xb5\xcf\x81\xce\xb1\xcf\x83\xce\xb9\xcf\x84\xce\xb5\xcf\x87\xce\xbd\xce\xb9\xcf\x83\xce\xbc\xcf\x8c\xcf\x82"
5539+
5540+
char temp[256];
5541+
int tlen = 0;
5542+
5543+
for (char *p = value; *p != '\0'; ) {
5544+
if (p[0] == '\\' && p[1] == 'x' && strlen(p) >= 4 && isxdigit(p[2]) && isxdigit(p[3])) {
5545+
int n = 0;
5546+
for (int i = 2; i < 4; i++) {
5547+
n = n * 16;
5548+
if (islower(p[i])) {
5549+
n += p[i] - 'a' + 10;
5550+
}
5551+
else if (isupper(p[i])) {
5552+
n += p[i] - 'A' + 10;
5553+
}
5554+
else { // must be digit due to isxdigit test above.
5555+
n += p[i] - '0';
5556+
}
5557+
}
5558+
temp[tlen++] = n;
5559+
p += 4;
5560+
}
5561+
else {
5562+
temp[tlen++] = *p++;
5563+
}
5564+
}
5565+
temp[tlen] = '\0';
5566+
strlcpy (value, temp, sizeof(value));
5567+
5568+
// end
55285569
if (strcasecmp(keyword, "DELAY") == 0) {
55295570
b->delay = parse_interval(value,line);
55305571
}

0 commit comments

Comments
 (0)