FLIR Systems, Inc
2018 Nov
RawBoson is a tool that implements Boson FSLP protocol over serial. It allows to send any command that is in Boson-ICD to the camera. This package doesn't contain the Boson-ICD, in order to get one please refer to :
It gets a function and its parameters, converts that to FSLP protocol and sends it through serial.
For example:
- send a FLAT Field:
./rawBoson c50007 - ask for serial number:
./rawBoson c50002 - Change output to BlackHot:
./rawBoson cB0003 x0 x0 x0 x1 - Change output to WhiteHot:
./rawBoson cB0003 x0 x0 x0 x0
Other parameters:
- Use
-vfor verbose output:./rawBoson -v c50007 - Use
-afor ASCII only output:./rawBoson -a c50007 - Use
-Bfor ASCII and HEX output:./rawBoson -B c50007 - Set serial port
-p:./rawBoson -p /dev/ttyACM0 c50007 - Set baud rate
-b:./rawBoson -b 921600 c50007
Default settings:
- Serial port:
/dev/ttyACM0 - Baud rate:
921600
To compile : make
To clean : make clean
sudo chmod a+rwx /dev/ttyACM0