×

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

Bi-monthly release with minor bug fixes and improvements

The unlucky guy and desperate that found the work around. Thanks INDI community.

It's not built yet. It requires a new dependency that I just added. It should be available in 1-2 hours.
The following user(s) said Thank You: Gilles Gagnon, R Dan Nafe
1 year 8 months ago #84777

Please Log in or Create an account to join the conversation.

  • Posts: 401
  • Thank you received: 41
1 year 8 months ago #84779

Please Log in or Create an account to join the conversation.

Laundpad is very slow in building packaging, it's been 2 hours and still not built: code.launchpad.net/~mutlaqja/+recipe/libomegonpro-stable
1 year 8 months ago #84783

Please Log in or Create an account to join the conversation.

  • Posts: 455
  • Thank you received: 51

Oups missed those messages.
Sorry I wasn't here on the good place :oops: :oops:
1 year 8 months ago #84784

Please Log in or Create an account to join the conversation.

  • Posts: 401
  • Thank you received: 41
Thank you Jasem for this info!

Question:

That means that is already ready to install for amd64 and we are waiting for arm64 & armhf?



I want to ask seriously, you think that the best way is to have both Kstars & INDI is to compile from source and then just git pull ?
1 year 8 months ago #84785
Attachments:

Please Log in or Create an account to join the conversation.

  • Posts: 455
  • Thank you received: 51
Problem is fixed for the risingcam IMX571 (toupcam driver). Many thanks to Jasem. But the indi_asi_ccd driver still crash. I tested it with 2 asi cams with same result.
The setup I use is: a main CCD (Risingcam IMX571), a ZWO 120MM, both connected to the hub of a CEM60 which is connected to a Raspberri Pi running Ubuntu-Mate 20.04 LTS.
1 year 8 months ago #84798

Please Log in or Create an account to join the conversation.

  • Posts: 1009
  • Thank you received: 133
Did you install latest libasi?
What does
strings /usr/lib/libASICamera2.so | grep ^1,
report? Should be "1, 22"
My cameras (183MC, 290MMmini) work with that.
1 year 8 months ago #84802

Please Log in or Create an account to join the conversation.

  • Posts: 455
  • Thank you received: 51
Here are all the ASI libs on my system. Maybe I need to make some clean.


/usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25
/usr/lib/aarch64-linux-gnu/libASICamera2.so
/usr/lib/aarch64-linux-gnu/libASICamera2.so.1
find: \u2018/usr/NX/var/db/node/externalports\u2019: Permission denied
find: \u2018/usr/NX/var/tmp/nx\u2019: Permission denied
find: \u2018/usr/NX/scripts/log\u2019: Permission denied
/usr/local/lib/libASICamera2.so.1.25
/usr/local/lib/libASICamera2.so.1.22
/usr/local/lib/libASICamera2.so
/usr/local/lib/libASICamera2.so.1
/usr/local/lib/libASICamera2.so.1.21
1 year 8 months ago #84803

Please Log in or Create an account to join the conversation.

  • Posts: 1009
  • Thank you received: 133
Ah, my bad. I'll never learn how Debian organizes the libs :-P
But yes, it seems you are mixing repository installs with manually compiled and installed ones. That can ask for trouble...
As a quick test (assuming last one you installed was the nightly from the repository) I'd remove /usr/local/lib/libASICamera2.so.1.25 and see if that helps.
Cleaning out the manual installs for sure is a good idea. I can recommend 'stow' to handle local installs.
1 year 8 months ago #84804

Please Log in or Create an account to join the conversation.

  • Posts: 455
  • Thank you received: 51
The problem comes from the install via apt or compilation that install a 1.25 ASI lib under <strong>aarch64-linux-gnu</strong> and a 1.22 under <strong> /usr/local/lib</strong> (even if the extension is 1.25).
The work around is to rename the 1.25 under <strong>/usr/local/lib</strong> whatever you want and to copy<strong> /usr/local/lib/libASICamera2.so.1.25</strong> under<strong> /usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25</strong>
And hop, all is fine.
Maybe some issue in the compilation scripts because I obtain same result compiling and installing with scripts or using apt.

observatoire@observatoire:~$ sudo find /usr -name libASI*
/usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25
/usr/lib/aarch64-linux-gnu/libASICamera2.so
/usr/lib/aarch64-linux-gnu/libASICamera2.so.1
/usr/local/lib/libASICamera2.so.1.25
/usr/local/lib/libASICamera2.so
/usr/local/lib/libASICamera2.so.1
observatoire@observatoire:~$ strind /usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25 | grep 1,
strind: command not found
observatoire@observatoire:~$ strings /usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25 | grep 1,
1, 25, 0, 0
1, 25, 0, 0
observatoire@observatoire:~$ sudo rm -rf usr/lib/aarch64-linux-gnu/libASI*
observatoire@observatoire:~$ sudo find /usr -name libASI*
/usr/lib/aarch64-linux-gnu/libASICamera2.so.1.25
/usr/lib/aarch64-linux-gnu/libASICamera2.so
/usr/lib/aarch64-linux-gnu/libASICamera2.so.1
/usr/local/lib/libASICamera2.so.1.25
/usr/local/lib/libASICamera2.so
/usr/local/lib/libASICamera2.so.1
observatoire@observatoire:~$ strings /usr/local/lib/libASICamera2.so.1.25 | grep 1,
1, 22
Last edit: 1 year 8 months ago by Patrick.
1 year 8 months ago #84805

Please Log in or Create an account to join the conversation.

  • Posts: 1009
  • Thank you received: 133
Yes, there's two issues: The naming is based on the allover version (which is 1.25 for all except the camera lib for aarch64), and when having multiple versions installed it will depend on your setup of LD_LIBRARY_PATH which one the executable will actually use.
Therefore my remark to be careful when mixing repo installs with self-compiled installs, even more if you just manually install over previous installs, as that will keep old versions of updated libraries in place...
1 year 8 months ago #84824

Please Log in or Create an account to join the conversation.

  • Posts: 11
  • Thank you received: 1
Dear All,
It looks I'm facing the same issue. ASI driver crashes and restarts continously.
My Indi server is installed on a Raspberry Pi4. Kstars/Ekos is on a remote PC (local network).
The setup ran perfectly until the latest update. I've 4 ASI cameras attached to the server.
I've tried to installed the file given here : code.launchpad.net/~mutlaqja/+recipe/libomegonpro-stable
But no change.
I've tried updating with the nightly builds.
Can you give me a recommandation to make the setup work again?
Best regards,
François Cochard (Shelyak Instruments).
1 year 8 months ago #84902

Please Log in or Create an account to join the conversation.

Time to create page: 0.722 seconds