Nope, running as root does not help. Seems like the script gets stuck on the write to the port. The ser.write(s) never returns.<br><br>Thanks for the tip anyway.<br><br>Jim<br><br><div class="gmail_quote">On Jan 31, 2008 1:33 AM, Ryan Pavlik &lt;<a href="mailto:abiryan@ryand.net">abiryan@ryand.net</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Have you checked the permissions on the device file to ensure that your<br>user (&quot;user&quot;) has write permissions (and/or tried running this as root?)<br>
<br>Ryan<br><div><div></div><div class="Wj3C7c"><br>James Kemp wrote:<br>&gt; I&#39;m using a N810, but the problem of connecting a RS232 device is<br>&gt; probably the same.<br>&gt;<br>&gt; I&#39;m getting close to getting a RS232 connection working using<br>
&gt; Bluetooth and Python2.5. The code below is getting me close. I can<br>&gt; receive RS232 string over Bluetooth using this code. I just can&#39;t seem<br>&gt; to figure out how to send string out. If I try and use PySerial<br>
&gt; package I get an error when trying to open the port.<br>&gt;<br>&gt; #! /usr/bin/env python2.5<br>&gt; import dbus<br>&gt; import time<br>&gt; import sys<br>&gt; import thread<br>&gt; #import serial<br>&gt;<br>&gt; PortOpen = 0<br>
&gt; ser = &quot;&quot;<br>&gt;<br>&gt; #<br>&gt; =============================================================================<br>&gt; def OpenPort ( COM_Port ):<br>&gt; &nbsp; &nbsp; global ser, PortOpen<br>&gt; &nbsp; &nbsp; try:<br>&gt; &nbsp; &nbsp; print &quot;Opening %s port&quot; % COM_Port<br>
&gt; &nbsp; &nbsp; #ser = serial.Serial( COM_Port, 115200, timeout=0,<br>&gt; parity=serial.PARITY_NONE, rtscts=0)<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; ser = open( COM_Port, &#39;r+&#39; )<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; PortOpen = 1<br>&gt; &nbsp; &nbsp; except:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; print &quot;Error opening serial port.&quot;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; exit()<br>&gt;<br>&gt;<br>&gt; #<br>&gt; =============================================================================<br>&gt; def CommThread ( tid ):<br>&gt; &nbsp; &nbsp; &quot;&quot;&quot; This function is designed to be run as a thread task. &quot;&quot;&quot;<br>
&gt; &nbsp; &nbsp; global gTID, PortOpen<br>&gt; &nbsp; &nbsp; gTID = tid<br>&gt; &nbsp; &nbsp; i = 0<br>&gt; &nbsp; &nbsp; while PortOpen:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; s = ser.readline( ).strip( &#39;\r\n&#39; )<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; print s<br>&gt; &nbsp; &nbsp; print &quot;CommThread Ending %d&quot; % PortOpen<br>
&gt;<br>&gt; bus = dbus.SystemBus()<br>&gt; bmgr = dbus.Interface( bus.get_object(&#39;org.bluez&#39;, &#39;/org/bluez&#39;),<br>&gt; &#39;org.bluez.Manager&#39;)<br>&gt; bus_id = bmgr.ActivateService(&#39;serial&#39;)<br>
&gt; serial = dbus.Interface(bus.get_object( bus_id, &#39;/org/bluez/serial&#39;),<br>&gt; &#39;org.bluez.serial.Manager&#39;)<br>&gt;<br>&gt; # Service connection, read the serial API to check the available patterns<br>&gt; address = &quot;00:01:95:06:CF:88&quot;<br>
&gt; service = &quot;spp&quot;<br>&gt;<br>&gt; # Bind to the default local adapter<br>&gt; device = serial.ConnectService( address, service )<br>&gt; print &quot;Connected %s to %s&quot; % (device, address)<br>&gt;<br>&gt; time.sleep(1)<br>
&gt; OpenPort( device )<br>&gt; thread.start_new( CommThread, (1234,) )<br>&gt;<br>&gt; print &quot;Press CTRL-C to disconnect&quot;<br>&gt;<br>&gt; while(1):<br>&gt; &nbsp; &nbsp; s = raw_input()<br>&gt; &nbsp; &nbsp; print &quot;Writting %s&quot; % s<br>
&gt; &nbsp; &nbsp; ser.write(s)<br>&gt; &nbsp; &nbsp; ser.flush()<br>&gt;<br>&gt; serial.DisconnectService(device)<br>&gt;<br></div></div>&gt; ------------------------------------------------------------------------<br>&gt;<br>&gt; _______________________________________________<br>
&gt; maemo-developers mailing list<br>&gt; <a href="mailto:maemo-developers@maemo.org">maemo-developers@maemo.org</a><br>&gt; <a href="https://lists.maemo.org/mailman/listinfo/maemo-developers" target="_blank">https://lists.maemo.org/mailman/listinfo/maemo-developers</a><br>
&gt;<br><br><br></blockquote></div><br><br clear="all"><br>-- <br>Allied Transportation Technology, Inc.<br>Jim Kemp<br>1465 Combermere Dr.<br>Troy, MI 48083<br>Ph: (248) 616-2100 Ext: 28<br>Cell: (248) 930-7709