diff options
Diffstat (limited to 'examples/grab_eit_shapes.py')
-rw-r--r-- | examples/grab_eit_shapes.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/grab_eit_shapes.py b/examples/grab_eit_shapes.py index 7923099..200d109 100644 --- a/examples/grab_eit_shapes.py +++ b/examples/grab_eit_shapes.py @@ -135,7 +135,9 @@ if __name__ == '__main__': ai['rfgen'] = rfgen ai['lockin'] = lockin ai['cellTemperatureController'] = I800(device_nickname='.'.join([app_nickname, 'cellTemperatureController']), tsdb_ingester=tsdb_ingester) - ai['scope.feedback'] = scope_fdbk + # Do not add scope.feedback to apparatus.instruments it will create recursive loop + # in the saved data file + # ai['scope.feedback'] = scope_fdbk scope_fdbk.config['SavePath'] = '/mnt/qol_grp_data/data.VAMPIRE.HighPower' scope_fdbk.config['FnamePrefix'] = 'scope_eit' # scope_fdbk.setRoll(False) |