|
1 | 1 | //
|
2 | 2 | // This file is part of Dire Wolf, an amateur radio packet TNC.
|
3 | 3 | //
|
4 |
| -// Copyright (C) 2011, 2012, 2013, 2014, 2015 John Langner, WB2OSZ |
| 4 | +// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016 John Langner, WB2OSZ |
5 | 5 | //
|
6 | 6 | // This program is free software: you can redistribute it and/or modify
|
7 | 7 | // it under the terms of the GNU General Public License as published by
|
|
46 | 46 | #include <gps.h> /* for DEFAULT_GPSD_PORT (2947) */
|
47 | 47 | #endif
|
48 | 48 |
|
49 |
| -#ifdef USE_HAMLIB |
50 |
| -#include <hamlib/rig.h> |
51 |
| -#endif |
52 | 49 |
|
53 | 50 | #include "ax25_pad.h"
|
54 | 51 | #include "textcolor.h"
|
@@ -612,12 +609,6 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
612 | 609 | int adevice;
|
613 | 610 | int m;
|
614 | 611 |
|
615 |
| -#if USE_HAMLIB |
616 |
| - RIG *rig; |
617 |
| - int rigs = 0; |
618 |
| -#endif |
619 |
| - |
620 |
| - |
621 | 612 | #if DEBUG
|
622 | 613 | text_color_set(DW_COLOR_DEBUG);
|
623 | 614 | dw_printf ("config_init ( %s )\n", fname);
|
@@ -1460,6 +1451,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
1460 | 1451 | * xxx serial-port [-]rts-or-dtr [ [-]rts-or-dtr ]
|
1461 | 1452 | * xxx GPIO [-]gpio-num
|
1462 | 1453 | * xxx LPT [-]bit-num
|
| 1454 | + * PTT RIG model port |
| 1455 | + * PTT RIG AUTO port |
| 1456 | + * |
| 1457 | + * When model is 2, port would host:port like 127.0.0.1:4532 |
| 1458 | + * Otherwise, port would be a serial port like /dev/ttyS0 |
| 1459 | + * |
1463 | 1460 | *
|
1464 | 1461 | * Applies to most recent CHANNEL command.
|
1465 | 1462 | */
|
@@ -1544,16 +1541,41 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
1544 | 1541 | }
|
1545 | 1542 | else if (strcasecmp(t, "RIG") == 0) {
|
1546 | 1543 | #ifdef USE_HAMLIB
|
1547 |
| - p_audio_config->achan[channel].octrl[ot].ptt_method = PTT_METHOD_HAMLIB; |
1548 | 1544 |
|
1549 | 1545 | t = split(NULL,0);
|
1550 | 1546 | if (t == NULL) {
|
1551 | 1547 | text_color_set(DW_COLOR_ERROR);
|
1552 |
| - dw_printf ("Config file line %d: Missing RIG number.\n", line); |
| 1548 | + dw_printf ("Config file line %d: Missing model number for hamlib.\n", line); |
1553 | 1549 | continue;
|
1554 | 1550 | }
|
| 1551 | + if (strcasecmp(t, "AUTO") == 0) { |
| 1552 | + p_audio_config->achan[channel].octrl[ot].ptt_model = -1; |
| 1553 | + } |
| 1554 | + else { |
| 1555 | + int n = atoi(t); |
| 1556 | + if (n < 1 || n > 9999) { |
| 1557 | + text_color_set(DW_COLOR_ERROR); |
| 1558 | + dw_printf ("Config file line %d: Unreasonable model number %d for hamlib.\n", line, n); |
| 1559 | + continue; |
| 1560 | + } |
| 1561 | + p_audio_config->achan[channel].octrl[ot].ptt_model = n; |
| 1562 | + } |
| 1563 | + |
| 1564 | + t = split(NULL,0); |
| 1565 | + if (t == NULL) { |
| 1566 | + text_color_set(DW_COLOR_ERROR); |
| 1567 | + dw_printf ("Config file line %d: Missing port for hamlib.\n", line); |
| 1568 | + continue; |
| 1569 | + } |
| 1570 | + strlcpy (p_audio_config->achan[channel].octrl[ot].ptt_device, t, sizeof(p_audio_config->achan[channel].octrl[ot].ptt_device)); |
| 1571 | + |
| 1572 | + t = split(NULL,0); |
| 1573 | + if (t != NULL) { |
| 1574 | + text_color_set(DW_COLOR_ERROR); |
| 1575 | + dw_printf ("Config file line %d: %s was not expected after model & port for hamlib.\n", line, t); |
| 1576 | + } |
1555 | 1577 |
|
1556 |
| - p_audio_config->achan[channel].octrl[ot].ptt_rig = atoi(t); |
| 1578 | + p_audio_config->achan[channel].octrl[ot].ptt_method = PTT_METHOD_HAMLIB; |
1557 | 1579 |
|
1558 | 1580 | #else
|
1559 | 1581 | text_color_set(DW_COLOR_ERROR);
|
@@ -1691,79 +1713,6 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
1691 | 1713 | }
|
1692 | 1714 | }
|
1693 | 1715 |
|
1694 |
| -/* |
1695 |
| - * RIG - HAMLib rig configuration. |
1696 |
| - * |
1697 |
| - * xxx port model |
1698 |
| - * |
1699 |
| - * For example a Yeasu FT-817 on /dev/ttyUSB0: |
1700 |
| - * RIG /dev/ttyUSB0 120 |
1701 |
| - * |
1702 |
| - * For example rigctld on localhost: |
1703 |
| - * RIG 127.0.0.1:4532 2 |
1704 |
| - */ |
1705 |
| - |
1706 |
| - else if (strcasecmp(t, "RIG") == 0) { |
1707 |
| -#ifdef USE_HAMLIB |
1708 |
| - int n; |
1709 |
| - hamlib_port_t port; |
1710 |
| - rig_model_t rig_model; |
1711 |
| - |
1712 |
| - if (rigs == MAX_RIGS) { |
1713 |
| - text_color_set(DW_COLOR_ERROR); |
1714 |
| - dw_printf ("Config file line %d: Maximum number of rigs reached.\n", line); |
1715 |
| - continue; |
1716 |
| - } |
1717 |
| - |
1718 |
| - t = split(NULL,0); |
1719 |
| - if (t == NULL) { |
1720 |
| - text_color_set(DW_COLOR_ERROR); |
1721 |
| - dw_printf ("Config file line %d: Missing port, model[, key=value].\n", |
1722 |
| - line); |
1723 |
| - continue; |
1724 |
| - } |
1725 |
| - |
1726 |
| - strncpy (port.pathname, t, FILPATHLEN - 1); |
1727 |
| - |
1728 |
| - t = split(NULL,0); |
1729 |
| - if (t == NULL) { |
1730 |
| - text_color_set(DW_COLOR_ERROR); |
1731 |
| - dw_printf ("Config file line %d: Missing model[, key=value]\n", line); |
1732 |
| - continue; |
1733 |
| - } |
1734 |
| - |
1735 |
| - if (strcasecmp(t, "AUTO") == 0) { |
1736 |
| - rig_load_all_backends(); |
1737 |
| - rig_model = rig_probe(&port); |
1738 |
| - } |
1739 |
| - else { |
1740 |
| - rig_model = atoi(t); |
1741 |
| - } |
1742 |
| - |
1743 |
| - rig = rig_init(rig_model); |
1744 |
| - if (!rig) { |
1745 |
| - text_color_set(DW_COLOR_ERROR); |
1746 |
| - dw_printf ("Config file line %d: Unknown rig %d, please check riglist.h.\n", line, rig_model); |
1747 |
| - continue; |
1748 |
| - } |
1749 |
| - |
1750 |
| - strncpy (rig->state.rigport.pathname, port.pathname, FILPATHLEN - 1); |
1751 |
| - n = rig_open(rig); |
1752 |
| - if (n != RIG_OK) { |
1753 |
| - text_color_set(DW_COLOR_ERROR); |
1754 |
| - dw_printf ("Config file line %d: Rig open error %d: %s\n", line, n, rigerror(n)); |
1755 |
| - continue; |
1756 |
| - } |
1757 |
| - |
1758 |
| - p_audio_config->rig[rigs++] = rig; |
1759 |
| - p_audio_config->rigs = rigs; |
1760 |
| - |
1761 |
| -#else |
1762 |
| - text_color_set(DW_COLOR_ERROR); |
1763 |
| - dw_printf ("Config file line %d: RIG is only available when hamlib support is enabled.\n", line); |
1764 |
| - continue; |
1765 |
| -#endif |
1766 |
| - } |
1767 | 1716 |
|
1768 | 1717 | /*
|
1769 | 1718 | * DWAIT - Extra delay for receiver squelch.
|
|
0 commit comments