@@ -1694,6 +1694,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1694
1694
text_color_set (DW_COLOR_INFO );
1695
1695
dw_printf ("Line %d: Using a FIX_BITS value greater than %d is not recommended for normal operation.\n" ,
1696
1696
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" );
1697
1700
}
1698
1701
1699
1702
t = split (NULL ,0 );
@@ -5525,6 +5528,44 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
5525
5528
strlcpy (keyword , t , sizeof (keyword ));
5526
5529
strlcpy (value , e + 1 , sizeof (value ));
5527
5530
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
5528
5569
if (strcasecmp (keyword , "DELAY" ) == 0 ) {
5529
5570
b -> delay = parse_interval (value ,line );
5530
5571
}
0 commit comments