From 8f8c38cd3180d5899ecd0d440bf7cc205af3655a Mon Sep 17 00:00:00 2001 From: sfop Date: Wed, 24 Aug 2016 14:41:50 +0200 Subject: [PATCH] Closedown --- script/camtool.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/camtool.py b/script/camtool.py index a5913ef..d4b9ba1 100644 --- a/script/camtool.py +++ b/script/camtool.py @@ -45,7 +45,7 @@ class CamTool(DeviceBase): self.cam_latch = Channel(prefix + "latch.capture", 'l', alias = name + " latch") if self.latch: self.start() - time.sleep(3.0) + time.sleep(1.0) self.cam_latch.write(1) self.waitForChannel(self.data_prefix + "timestamp",20) else: @@ -55,7 +55,7 @@ class CamTool(DeviceBase): self.waitForChannel(self.data_prefix + "image.shape",20) self.stop() self.timestamp = Channel(self.data_prefix + "timestamp",type = 'd', alias = name + " timestamp") #[D1, D2, ...] - self.timestamp.set_monitored(True) + #self.timestamp.set_monitored(True) self.com_x = Channel(self.data_prefix + "x_stats.com", alias = name + " com x") self.com_y = Channel(self.data_prefix + "y_stats.com", alias = name + " com y") self.profile_x = Channel(self.data_prefix + "profile.x", alias = name + " profile x")