DEBUG display on Linux
Bullwinkle
Posts: 101
I finally bought a Basic Stamp kit this week. I lashed out and bought the Stampworks kit. AND I LOVE IT!
I got it working from Linux using Adrian Schneider's stampbc program. But how can I see the DEBUG output? I have trying "cat /dev/ttyUSB0" but that just returns without displaying anything.
And ideas?
Thanks.
I got it working from Linux using Adrian Schneider's stampbc program. But how can I see the DEBUG output? I have trying "cat /dev/ttyUSB0" but that just returns without displaying anything.
And ideas?
Thanks.
Comments
This script seems to work. Not very elegant, but hey.
#!/bin/sh
while (true); do
cat /dev/ttyUSB0
done
Maybe someone else here will find it useful.