Re: NI DAQCard6036 and SuSE 10

do you have cardinfo installed? If you can see the irq info from that
little AP after you insert the card, it's half way there. I have a
daq6024 in a laptop running fedora. What I do, I run the following
script BEFORE inserting the card (the script includes RTAI modules):

if [ -e /dev/comedi0 ]; then 
echo comedi nodes checked
 else 
 make -f /usr/src/comedi/Makefile dev
 fi

if [ -e /dev/rtf/0 ]; then 
echo RTAI nodes checked
 else 
mkdir /dev/rtf
for n in `seq 0 9`
do
        f=/dev/rtf/$n
        mknod -m 666 $f c 150 $n
done
fi

if [ -e /dev/rtai_shm ]; then 
echo rtai_shm checked
 else
mknod -m 666 /dev/rtai_shm c 10 254
fi

if [ -e /dev/rtf0 ]; then 
echo rtf checked
 else
for n in `seq 0 9`
do
        f=/dev/rtf$n
        mknod -m 666 $f c 150 $n
done
fi
insmod /usr/realtime/modules/rtai_hal.ko
insmod /usr/realtime/modules/rtai_ksched.ko
insmod /usr/realtime/modules/rtai_math.ko
insmod /usr/realtime/modules/rtai_lxrt.ko
insmod /usr/realtime/modules/rtai_fifos.ko
insmod /usr/realtime/modules/rtai_shm.ko
modprobe kcomedilib

cheers,

richard

On Mon, 2006-01-09 at 11:11 +0100, Thomas Pissulla wrote:
> Hi everybody,
> 
> I need to run a DAQCard 6036 on SuSE 10. I installed comedi and
> comedilib without problems. The PCMCIa startscripts are in /etc/pcmcia
> but after inserting the card the comedi drivers aren't loaded.
> 
> I read, that the pcmcia detection was changed with SuSE 10 but I do not
> know, where to put the start scripts now (if it is so easy).
> 
> Has anybody some experience with PCMCIA, comedi and SuSE 10? 
> Or is there a way to load the comedi-drivers for the card by hand?
> 
> 
> Thanks in advance,
> Thomas Pissulla
> 
> 
> 

Received on 2006-01-09Z23:32:23