Commit f87c992f authored by Davide Ricci's avatar Davide Ricci
Browse files

Flipping mako. Updating cameras.ini info

parent a54e27be
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -79,9 +79,9 @@ power_api = /telescope/power
fits_path   = fits/teccam2.fits
device      = tec2
has_loop    = true
pixel_scale = 0.160
orientation = -60
background_estimate = 10
pixel_scale = 0.200
orientation = 210
background_estimate = 0.2

[teccam3]
role        = tec
@@ -90,6 +90,6 @@ power_api = /telescope/power
fits_path   = fits/teccam3.fits
device      = tec3
has_loop    = true
pixel_scale = 0.160
orientation = -60
background_estimate = 10
pixel_scale = 0.200
orientation = 210
background_estimate = 0.2
+1 −1
Original line number Diff line number Diff line
@@ -463,7 +463,7 @@ class Guider(Mako):

            
        log.debug(f"Getting original data")
        data = self.matrix
        data = np.flip(self.matrix, axis=0)
        if data is None:
            return None
        
+1 −3
Original line number Diff line number Diff line
@@ -137,9 +137,7 @@ class Guider:
                msg = f"step error: {e}"
                log.error(f"Guider: {msg}")
                self.error.append(msg)
            # No fixed delay: _step()/_acquire() already block on the camera
            # being free, so the next correction starts as soon as it is.
            # The sleep(0) just yields control for cancellation/scheduling.
            # Set self.active to False to test one-shot
            # self.active = False
            await asyncio.sleep(0)