|
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, 2016, 2017, 2018, 2021, 2023 John Langner, WB2OSZ |
| 4 | +// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2021, 2023, 2025, 2026 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 |
@@ -2262,7 +2262,7 @@ void config_init (char *fname, struct audio_s *p_audio_config, |
2262 | 2262 | #else |
2263 | 2263 | text_color_set(DW_COLOR_ERROR); |
2264 | 2264 | dw_printf ("Config file line %d: %s with CM108 is only available when USB Audio GPIO support is enabled.\n", line, otname); |
2265 | | - dw_printf ("You must rebuild direwolf with CM108 Audio Adapter GPIO PTT support.\n"); |
| 2265 | + dw_printf ("You must install libudev-dev and rebuild direwolf to have CM108 Audio Adapter GPIO PTT support.\n"); |
2266 | 2266 | dw_printf ("See Interface Guide for details.\n"); |
2267 | 2267 | rtfm(); |
2268 | 2268 | exit (EXIT_FAILURE); |
@@ -5740,6 +5740,11 @@ void config_init (char *fname, struct audio_s *p_audio_config, |
5740 | 5740 | * Possible to have multiple and they are cumulative. |
5741 | 5741 | */ |
5742 | 5742 |
|
| 5743 | +#if 1 // release 1.9 |
| 5744 | +// In hindsight, that was a bad idea. Was this ever used? |
| 5745 | +// We should not be enablers of bad behavior. |
| 5746 | +// Rip out all associated code in release 2.0 ??? |
| 5747 | + |
5743 | 5748 | else if (strcasecmp(t, "NOXID") == 0) { |
5744 | 5749 |
|
5745 | 5750 | t = split(NULL,0); |
@@ -5767,7 +5772,7 @@ void config_init (char *fname, struct audio_s *p_audio_config, |
5767 | 5772 | t = split(NULL,0); |
5768 | 5773 | } |
5769 | 5774 | } |
5770 | | - |
| 5775 | +#endif |
5771 | 5776 |
|
5772 | 5777 | /* |
5773 | 5778 | * Invalid command. |
|
0 commit comments