Linux software that talks to 6-channel master hub?

jkcunningham

New Member
Hi,
I'm working in the Linux world, new to 1-wire, bought a 6-channel master hub and some sensors and can't figure out how to talk to this hub. I installed owfs but it looks like it only knows how to talk to 9000 series parts, not this hub which goes through a regular old COM port via the maxim 232. Does anyone know what drivers or software is available to talk to this thing? I can code C, C++, and if necessary, Python. It doesn't have to be fancy. Other than running some winapps there's not a whole lot of info on the HobbyBoards site.

Thanks in advance.
Jeff
 
Hi,
I'm working in the Linux world, new to 1-wire, bought a 6-channel master hub and some sensors and can't figure out how to talk to this hub. I installed owfs but it looks like it only knows how to talk to 9000 series parts, not this hub which goes through a regular old COM port via the maxim 232. Does anyone know what drivers or software is available to talk to this thing? I can code C, C++, and if necessary, Python. It doesn't have to be fancy. Other than running some winapps there's not a whole lot of info on the HobbyBoards site.

Thanks in advance.
Jeff

OWFS should support the Master Hub just fine. The software needs to support a DS9097U serial adapter and a DS2409 based hub to work with the Master Hub.

Eric
 
OWFS should support the Master Hub just fine. The software needs to support a DS9097U serial adapter and a DS2409 based hub to work with the Master Hub.

Eric

Your suggestion worked: it mounts just fine with this command:

/opt/owfs/bin/owfs -d /dev/ttyS0 -m /mnt/1wire

ls -l /mnt/1wire

drwxrwxrwx 1 root root 8 2008-10-13 19:52 1F.43D903000000/
drwxrwxrwx 1 root root 8 2008-10-13 19:52 1F.59D603000000/
drwxrwxrwx 1 root root 8 2008-10-13 19:52 1F.90D103000000/
drwxr-xr-x 1 root root 8 2008-10-13 19:50 bus.0/
drwxr-xr-x 1 root root 8 2008-10-13 19:50 settings/
drwxr-xr-x 1 root root 8 2008-10-13 19:50 statistics/
drwxr-xr-x 1 root root 30 2008-10-13 19:50 structure/
drwxr-xr-x 1 root root 8 2008-10-13 19:50 system/
drwxr-xr-x 1 root root 8 2008-10-13 19:50 uncached/


Thank you
Jeff
 
Does anyone know if there's a way to mount this filesystem with userspace permissions?

[edit] Never mind - I just figured it out. Sorry about wasting bandwidth.
For anyone following the thread, its --allow-others on startup, and uncomment the similar option in /etc/fuse.conf

Jeff
 
Back
Top