Another 32-bit on a 64 bit machine question.
Well how can one open a serial port on a Linux 64-bit box with a Pharo 32 bit? Any things would be very welcome Regards Friedrich
Hi, SocketStream on: 8080. should work, AFAIK the 64bits thingy does not have anything to do... It is something failing? cheers, Esteban On Jul 3, 2013, at 12:46 PM, Friedrich Dominicus <frido@q-software-solutions.de> wrote:
Well how can one open a serial port on a Linux 64-bit box with a Pharo 32 bit?
Any things would be very welcome
Regards Friedrich
On 03 Jul 2013, at 12:52, Esteban Lorenzano <estebanlm@gmail.com> wrote:
Hi,
SocketStream on: 8080.
He wants a Serial Port Connection, not a TCP Socket Stream ;-)
should work, AFAIK the 64bits thingy does not have anything to do... It is something failing?
cheers, Esteban
On Jul 3, 2013, at 12:46 PM, Friedrich Dominicus <frido@q-software-solutions.de> wrote:
Well how can one open a serial port on a Linux 64-bit box with a Pharo 32 bit?
Any things would be very welcome
Regards Friedrich
SerialPort new openPort:, then again... nothing to do with 64bits :) but... but... the SerialPlugin could have some problems :) (I don't know if it was working on all platforms) Esteban On Jul 3, 2013, at 1:07 PM, Sven Van Caekenberghe <sven@stfx.eu> wrote:
On 03 Jul 2013, at 12:52, Esteban Lorenzano <estebanlm@gmail.com> wrote:
Hi,
SocketStream on: 8080.
He wants a Serial Port Connection, not a TCP Socket Stream ;-)
should work, AFAIK the 64bits thingy does not have anything to do... It is something failing?
cheers, Esteban
On Jul 3, 2013, at 12:46 PM, Friedrich Dominicus <frido@q-software-solutions.de> wrote:
Well how can one open a serial port on a Linux 64-bit box with a Pharo 32 bit?
Any things would be very welcome
Regards Friedrich
Yes, there was an old SerialPlugin bug which I think it was reported by Friedrich Dominicus himself...but I am not sure if it was integrated. I can find the issue if you want.. (but I think it was not related to 32/64) Cheers, On Wed, Jul 3, 2013 at 8:20 AM, Esteban Lorenzano <estebanlm@gmail.com>wrote:
SerialPort new openPort:, then
again... nothing to do with 64bits :)
but... but... the SerialPlugin could have some problems :)
(I don't know if it was working on all platforms)
Esteban
On Jul 3, 2013, at 1:07 PM, Sven Van Caekenberghe <sven@stfx.eu> wrote:
On 03 Jul 2013, at 12:52, Esteban Lorenzano <estebanlm@gmail.com> wrote:
Hi,
SocketStream on: 8080.
He wants a Serial Port Connection, not a TCP Socket Stream ;-)
should work, AFAIK the 64bits thingy does not have anything to do... It is something failing?
cheers, Esteban
On Jul 3, 2013, at 12:46 PM, Friedrich Dominicus <
frido@q-software-solutions.de> wrote:
Well how can one open a serial port on a Linux 64-bit box with a Pharo 32 bit?
Any things would be very welcome
Regards Friedrich
-- Mariano http://marianopeck.wordpress.com
Mariano Martinez Peck <marianopeck@gmail.com> writes:
Yes, there was an old SerialPlugin bug which I think it was reported by Friedrich Dominicus himself...but I am not sure if it was integrated. Sorry for the noise but there still is a problem in the code.
At least here I can show you: sp := SerialPort new. sp openPort: '/dev/ttyUSB0' SerialPort(Object)>>error: SerialPort>>openPort: UndefinedObject>>DoIt Compiler>>evaluate:in:to:notifying:ifFail:logged: SmalltalkEditor>>evaluateSelectionAndDo: in Block: [rcvr class evaluatorClass new... but sp := SerialPort new. sp openPort: '/dev//ttyUSB0' works !!! Two / instead of just one I've not the slightes idea on why two slashes are needed. I just found out by accident. Can anyone confirm that? Regards Friedrich -- Q-Software Solutions GmbH; Sitz: Bruchsal; Registergericht: Mannheim Registriernummer: HRB232138; Geschaeftsfuehrer: Friedrich Dominicus
participants (4)
-
Esteban Lorenzano -
Friedrich Dominicus -
Mariano Martinez Peck -
Sven Van Caekenberghe