Logic Sniffer
Revision as of 11:58, 24 November 2010 by <bdi>PhilippeTeuwen</bdi> (talk | contribs) (Created page with "==Description== I'm talking about [http://dangerousprototypes.com/docs/Open_Bench_Logic_Sniffer this beast] ==Installation== ===My udev rules=== I added a /dev/OpenLogicSniffer…")
Description
I'm talking about this beast
Installation
My udev rules
I added a /dev/OpenLogicSniffer symlink by following this page:
#File /etc/udev/rules.d/77-ols.rules #Rules for Openbench Logix Snifferslogic. Creates a nice link to the ols ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fc92" MODE="0666" SYMLINK+="OpenLogicSniffer"
If you've problems with modem-manager trying to access the device (as seen in /var/log/syslog), you can add the following rule:
ATTRS{idVendor}=="04d8" ATTRS{idProduct}=="fc92" ENV{ID_MM_DEVICE_IGNORE}="1"
Firmware upgrade
Software
I tried this fork: http://www.lxtreme.nl/ols/ which is the official client for this board
and changed a bit the run.sh script to handle it through symlink :
if [ -h $0 ]; then
DIR=$(dirname "$(readlink $0)")
cd "$DIR"
BASEDIR=.
else
BASEDIR=$(dirname -- "${0}")
fi