Re: [PD] rfcomm and comport device list

2007-03-08 Thread IOhannes m zmoelnig
gordo wrote: > hi all, > > > btw. stupid newbie question: how can i access /dev/tty without starting > pd as root? use the permission system to aquire permissions ;-) this is: make sure that there is a group that can access the device (either read/writeable or just readable) make sure that your

Re: [PD] rfcomm and comport device list

2007-03-07 Thread gordo
On 3/8/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > That's because it looks for anything like "/dev/tty[SU]*". > Possibly if you open by name [open /dev/rfcomm1( it will work, if rfcomm1 is > a serial port. the workaround is just to create a symlink, for example: # ln -s /dev/rfcomm1 /dev/

Re: [PD] rfcomm and comport device list

2007-03-07 Thread martin.peach
gordo said > > hi all, > > i´m running pd 0.39-1 on 2.6.17-gentoo-r8 and reading data from an > incoming bluetooth device via bluez´s rfcomm. > > after connecting: > > # rfcomm connect 1 > Connected /dev/rfcomm1 to 10:00:E8:52:32:CE on channel 1 > > i can do: > > # cat /dev/rfcomm1 > > which

[PD] rfcomm and comport device list

2007-03-07 Thread gordo
hi all, i´m running pd 0.39-1 on 2.6.17-gentoo-r8 and reading data from an incoming bluetooth device via bluez´s rfcomm. after connecting: # rfcomm connect 1 Connected /dev/rfcomm1 to 10:00:E8:52:32:CE on channel 1 i can do: # cat /dev/rfcomm1 which cats all my incoming data correctly, but if