×

INDI Library v2.0.7 is Released (01 Apr 2024)

Bi-monthly release with minor bug fixes and improvements

INDI Driver for SVBONY cameras

  • Posts: 8
  • Thank you received: 1
This is the camera plugged into my Ubuntu laptop:

Bus 002 Device 002: ID 0bda:57d6 Realtek Semiconductor Corp. HP Truevision HD
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 002: ID 0a5c:216d Broadcom Corp. BCM43142A0 Bluetooth 4.0
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 005 Device 005: ID f266:9a0a CKCamera CKCamera
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

This is plugged into the RPI Ubuntu Mate x64:

Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 005: ID 046d:c018 Logitech, Inc. Optical Wheel Mouse
Bus 001 Device 007: ID f266:9a0a
Bus 001 Device 003: ID 046d:c31d Logitech, Inc. Media Keyboard K200
Bus 001 Device 002: ID 2109:3431 VIA Labs, Inc. Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
3 years 8 months ago #58358
The topic has been locked.
  • Posts: 67
  • Thank you received: 0

So the SV305 camera is MIA on your RPI as well. How does it find it then for KStars/Ekos?
Last edit: 3 years 8 months ago by Doug MacGregor.
3 years 8 months ago #58361
The topic has been locked.
  • Posts: 8
  • Thank you received: 1
It is there, it is just not named. If you read through this thread kengs said "That's not a big issue. There is a file that translates the USB VID/PID to a description. That file needs to be updated.
wiki.debian.org/HowToIdentifyADevice/USB".

So it really has nothing to do with the driver or the library finding the camera.

Are you still having an issue? What os flavor are you using? I was able to get it going on Ubuntu mate x64. You may need to do a fresh os and start over.
3 years 8 months ago #58364
The topic has been locked.
  • Posts: 67
  • Thank you received: 0

I am trying to run it on a fresh download of Stellarmate 1.5.3 and/or a fresh download of AstroBerry.
I don't know specifically which OS/version they use but I am assuming they are both Raspbian or something similar.
What are you running on your RPi?
Are you saying that you are running Ububtu mate on an x64 conputer?
If you are, I have no problems running the SV305 on my Windows 7 laptop.

Could you please verify the size of your indi_sv305_ccd driver file compared to mine?
If it's different would you be willing to e-mail me a copy of your driver file?
You lost me a bit with the VID/PID stuff.
I did a listing if the /sys/kernel/debug/usb/devices file and the Manufacturer=CKCamera and the Product=CKCamera. (4th group down).
So you are saying that these names don't matter OR is that the file that needs to be updated?
Last edit: 3 years 8 months ago by Doug MacGregor.
3 years 8 months ago #58371
Attachments:
The topic has been locked.
  • Posts: 269
  • Thank you received: 53
In the lsusb output whre it says f266:9a0a
f266 is the Vendor ID (VID) which corresponds to CKcamera as the manufactuer of the device
9a0a is the Prodcut ID (PID) which corresponds to the SV305

The fact that there is no description showing simply means that the file that contains all the VID's and PIDs and their descriptions is missing the entry for f266:9a0a
It does not mean that the driver is missing.
3 years 8 months ago #58372
The topic has been locked.
  • Posts: 67
  • Thank you received: 0

From what I can see from that long device list, the SV305 is the only device listed that says "Driver=(none)" (second to last line for that device).

If you are using the same self-built driver as I am and you are using Astroberry/Stellarmate like I am, why is your setup working and mine isn't?

If you look at the contents of your /var/lib/usbutils/usb.ids file do you find either f266 or 9a0a?

I'm looking but I cannot find the command to update that file.
If I can make a guess. the Manufacturer sends the updated information to the repository at www.linux-usb.org/.

Regardless, that is a side issue.

Thanks.
Last edit: 3 years 8 months ago by Doug MacGregor.
3 years 8 months ago #58384
The topic has been locked.
  • Posts: 67
  • Thank you received: 0
It looks like Ekos is starting but the only problem is that it can't find the device.

Tryng to start indiserver manually gives an error.
I guess my driver is no good.
So I guess I just wasted 5 days of my time on this.
I guess I'll just have to wait for the official driver.
Thanks.
Last edit: 3 years 8 months ago by Doug MacGregor.
3 years 8 months ago #58386
Attachments:
The topic has been locked.
  • Posts: 149
  • Thank you received: 31
Hi folks,

I managed to get some time left to work on the driver again.

I Refreshed it with the last SVBony SDK, fixing (at least) two issues :
- armv6 support
- a buffered junk frame issue

<<
1. first time I connect it fails to, something about failed to set Gain.
>>

I informed SVBony about this issue. Still there...

<<
2. the driver only appears when the remote mode is selected. I am guessing this will be fixed when it is absorbed into the master repo.
>>

Should be fixed.

I can't help you for the RPi4 support. I only own RPi B+ and RPi 2.

You can build deb packages and share them for you tests.
Just use "make package" for libsv305 and indi-sv305, instead of "make install"

don't forget to use "sudo ldconfig" after the libsv305 install, to get the libraries up and indexed.

The driver works well on my amd64 and armv6 devices.

I just sent a pull request.

Best regards.

Blaise
3 years 8 months ago #58407
The topic has been locked.
  • Posts: 48
  • Thank you received: 0
your the driver failed to load as you did not install the libsv305, or installed it in your /usr/local/lib

there are several ways around it.

1.
sudo cp /usr/local/libSVB* /usr/lib/.

2. run this to start your indiserver
LD_PATH_LIBRARY=/usr/local/lib/ indiserver indi_sv305_ccd
or
LD_PATH_LIBRARY=/usr/local/lib/:/usr/lib/ indiserver indi_sv305_ccd

if that fails, go to your indi-3rdparty/libsv305 and do these
rm build -r
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install
3 years 8 months ago #58428
The topic has been locked.
  • Posts: 48
  • Thank you received: 0

HI

I can confirm it works on both rpi4/rpi3 (arm7l)

Have you noticed that sometimes the camera returns an frame from the previous exposure? Maybe it is related to the junk frame.
3 years 8 months ago #58430
The topic has been locked.
  • Posts: 149
  • Thank you received: 31
Hi,

Thanks for your tests.

<<
Have you noticed that sometimes the camera returns an frame from the previous exposure? Maybe it is related to the junk frame.
>>

Right, this is the "junk frame" issue. It seams fixed in the last SDK.

Best regards.

Blaise
3 years 8 months ago #58432
The topic has been locked.
  • Posts: 8
  • Thank you received: 1
Thank you so much for taking the time to get this done. Im sure you will help a lot of people !
i hope to get some time with it this weekend.
3 years 8 months ago #58433
The topic has been locked.
Time to create page: 0.719 seconds