gehelem / indi_cam90_ccd

Indilib driver for CAM90 diy camera
GNU General Public License v3.0
7 stars 1 forks source link

State of art of developing #4

Open CarCarlo1977 opened 1 year ago

CarCarlo1977 commented 1 year ago

Hi, im trying to install this CAM90 driver but the images are totally black (0 values). When i use the Cam87 driver with some mod such as new width and height and pixel size and Instead the results is something like the attached image.

There is some that i'm missing?

Schermata 2022-11-30 alle 13 29 48
gehelem commented 1 year ago

Hi This repo used to be a work in progress... (Since i don't own a cam90 myself) I should mark it "archived" Sorry but i can't help on this specific question G.

CarCarlo1977 commented 1 year ago

Thanks Gehelem! i noted that changing some of parameters in that part of code in cameraStartExposure function something different happens. Maybe someone could help to develop a working driver.

From CAM90 repo if ( bin==2 ) { kolbyte=FWidthFWidth;//Changed in CAM90 Spi_comm ( 0x8B,1 ); //bining mBin=1; } else { kolbyte=FWidthFWidth*2; Spi_comm ( 0x8B,0 ); //no bining mBin=0; }

From CAM87 repo with my edits.

if ( bin==2 ) { kolbyte=mdeltY6000; //changed with witdth of cam90 Spi_comm ( 0x8B,1 ); //bining mBin=1; } else { kolbyte=mdeltY15600; //changed with witdth of cam90 Spi_comm ( 0x8B,0 ); //no bining mBin=0; }