Clive Garner replied to the topic 'SM 1.5 and QHY cameras' in the forum. 4 years ago

Bingo, as I thought I solved this last july with my QHY128c, it seems to have come back
issue is inside the rules etc, took me a while to figure how to do it again as I am still a newbie to Linux etc.
I just did this process again and now have contact with CCD.


Using File,,,,,, (qhy ccdsdk-v2.0.11-linux-debian-ubuntu-armv8)
open in terminal from each of the folders in order of info below 'lib' 'firmaware' 'udev' 'fx3load'
in each terminal window, do the sudo cp................ ( this copies the right info for QHY ccd's )


#####################################################################################################################
# Description : This script installs all the necessary files (libraries, firmwares, udev, include) on Linux machine.
# Written by : Jan Soldan (This email address is being protected from spambots. You need JavaScript enabled to view it.)
# Version : 1.02
# Date : 9/2017
#####################################################################################################################

# install shared libs and links
sudo cp -d ../lib/* /usr/local/lib

# install firmware
mkdir -p /usr/local/lib/qhy/firmware
sudo cp -p ../firmware/* /usr/local/lib/qhy/firmware

# install udev files
sudo cp ../udev/* /etc/udev/rules.d
sudo cp ../udev/* /lib/udev/rules.d

# install fxload with the FX3 support
mkdir -p /usr/share/usb (this folder is likely already there, just check if it is)
sudo cp ../fx3load/a3load.hex /usr/share/usb
sudo cp ../fx3load/fxload /sbin

Read More...