Skip to content

Commit 5d02e0b

Browse files
committed
Issue 292 - Remove serial port speed restriction for Mac OSX.
1 parent 14d6eed commit 5d02e0b

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
### New Features: ###
99

10+
- Dire Wolf now advertises itself using DNS Service Discovery. This allows suitable APRS / Packet Radio applications to find a network KISS TNC without knowing the IP address or TCP port. Thanks to Hessu for providing this. Currently available only for Linux and Mac OSX. [Read all about it here.](https://github.com/hessu/aprs-specs/blob/master/TCP-KISS-DNS-SD.md)
11+
1012
- The transmit calibration tone (-x) command line option now accepts a radio channel number and/or a single letter mode: a = alternate tones, m = mark tone, s = space tone, p = PTT only no sound.
1113

1214
- The BEACON configuration now recognizes the SOURCE= option. This replaces the AX.25 source address rather than using the MYCALL value for the channel. This is useful for sending more than 5 analog telemetry channels. Use two, or more, source addresses with up to 5 analog channels each.

src/direwolf.c

+4-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ int main (int argc, char *argv[])
296296
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
297297

298298

299-
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108)
299+
#if defined(ENABLE_GPSD) || defined(USE_HAMLIB) || defined(USE_CM108) || USE_AVAHI_CLIENT || USE_MACOS_DNSSD
300300
dw_printf ("Includes optional support for: ");
301301
#if defined(ENABLE_GPSD)
302302
dw_printf (" gpsd");
@@ -306,6 +306,9 @@ int main (int argc, char *argv[])
306306
#endif
307307
#if defined(USE_CM108)
308308
dw_printf (" cm108-ptt");
309+
#endif
310+
#if (USE_AVAHI_CLIENT|USE_MACOS_DNSSD)
311+
dw_printf (" dns-sd");
309312
#endif
310313
dw_printf ("\n");
311314
#endif

src/serial_port.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,14 @@ MYFDTYPE serial_port_open (char *devicename, int baud)
237237
case 9600: cfsetispeed (&ts, B9600); cfsetospeed (&ts, B9600); break;
238238
case 19200: cfsetispeed (&ts, B19200); cfsetospeed (&ts, B19200); break;
239239
case 38400: cfsetispeed (&ts, B38400); cfsetospeed (&ts, B38400); break;
240-
#ifndef __APPLE__
240+
// This does not seem to be a problem anymore.
241+
// Leaving traces behind, as clue, in case failure is encountered in some older version.
242+
//#ifndef __APPLE__
241243
// Not defined for Mac OSX.
242244
// https://groups.yahoo.com/neo/groups/direwolf_packet/conversations/messages/2072
243245
case 57600: cfsetispeed (&ts, B57600); cfsetospeed (&ts, B57600); break;
244246
case 115200: cfsetispeed (&ts, B115200); cfsetospeed (&ts, B115200); break;
245-
#endif
247+
//#endif
246248
default: text_color_set(DW_COLOR_ERROR);
247249
dw_printf ("serial_port_open: Unsupported speed %d. Using 4800.\n", baud);
248250
cfsetispeed (&ts, B4800); cfsetospeed (&ts, B4800);

0 commit comments

Comments
 (0)