[asterisk-commits] jdixon: branch jdixon/chan_usbradio-1.4 r141026 - /team/jdixon/chan_usbradio-...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Sep 4 09:41:49 CDT 2008


Author: jdixon
Date: Thu Sep  4 09:41:48 2008
New Revision: 141026

URL: http://svn.digium.com/view/asterisk?view=rev&rev=141026
Log:
Finalized DTMF and changed docs a little

Modified:
    team/jdixon/chan_usbradio-1.4/dev-1.0/channels/chan_irlp.c

Modified: team/jdixon/chan_usbradio-1.4/dev-1.0/channels/chan_irlp.c
URL: http://svn.digium.com/view/asterisk/team/jdixon/chan_usbradio-1.4/dev-1.0/channels/chan_irlp.c?view=diff&rev=141026&r1=141025&r2=141026
==============================================================================
--- team/jdixon/chan_usbradio-1.4/dev-1.0/channels/chan_irlp.c (original)
+++ team/jdixon/chan_usbradio-1.4/dev-1.0/channels/chan_irlp.c Thu Sep  4 09:41:48 2008
@@ -5,6 +5,7 @@
  *
  * Copyright (C) 2008, Scott Lawson/KI4LKF
  * ScottLawson/KI4LKF <ham44865 at yahoo.com>
+ * Jim Dixon, WB6NIL <jim at lambdatel.com>
  *
  * See http://www.asterisk.org for more information about
  * the Asterisk project. Please do not directly contact
@@ -22,6 +23,7 @@
  * \brief irlp channel driver for Asterisk
  * 
  * \author Scott Lawson/KI4LKF <ham44865 at yahoo.com>
+ * \author Jim Dixon, WB6NIL <jim at lambdatel.com>
  *
  * \ingroup channel_drivers
  */
@@ -29,39 +31,19 @@
 /*** MODULEINFO
  ***/
 
-/* Version 0.6, 9/4/2008
+/* Version 0.7, 9/4/2008
 irlp channel driver for Asterisk/app_rpt.
-This is a first attempt.
-
-How to use this driver:
-You must follow the instructions listed in the README file
-for rtpDir/rtpDir_tm bridge before using this driver.
-In other words, you must install the rtpDir_* scripts
-(included in the rtpDir bridge package)
-onto your local IRLP node, before using this driver.
-
-
-You must also make sure that the IRLP ispeaker starts with:
-   
-   /home/irlp/bin/ispeaker -f127.0.0.1 -P2174
-
-You must also make sure that the IRLP imike starts with:
-
-   /home/irlp/bin/imike -F 127.0.0.1:2084
-
-(Take a look at 5198.sh or 5198_tm.sh in rtpDir/rtpDir_tm 
-packages to see how imike and ispeaker are started)
-
-You should start imike and ispeaker manually, after you
-have modified your IRLP node according to the instructions listed 
-in the README file for rtpDir/rtpDir_tm bridge and after
-you have started the IRLP node with rc.irlp script.
-
-This driver and rtpDir/rtpDir_tm bridge
-might compete for the same port(s), so set irlpEnable=no in
-the config file for rtpDir/rtpDir_tm bridge or use different port(s)
-in this driver or rtpDir/rtpDir_tm bridge.
-
+
+I wish to thank the following people for the immeasurable amount of
+very high-quality assistance they have provided me, without which this
+project would have been impossible:
+
+Scott, KI4LKF
+Skip, WB6YMH
+Randy, KC6HUR
+Steve, N4IRS
+Eric, KA6UAI for putting up with a few miserable days of 
+   testing using his on-the-air repeater
 */
 
 #include "asterisk.h"
@@ -882,8 +864,8 @@
 			if ((recvlen > 0) && strchr("0123456789SPABCD",c))
 			{
 
-				if (c == 'S') c = '#';
-				if (c == 'P') c = '*';
+				if (c == 'S') c = '*';
+				if (c == 'P') c = '#';
 
 				fr.len = 0;
 				fr.subclass = c;




More information about the asterisk-commits mailing list