|
Back
Midas
Rome
Roody
Rootana
|
Midas DAQ System |
Not logged in |
|
|
30 Apr 2024, Luigi Vigani, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Stefan Ritt, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Luigi Vigani, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Stefan Ritt, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
03 May 2024, Stefan Ritt, Bug Report, Params not initialized when starting sequencer
|
10 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
13 May 2024, Luigi Vigani, Bug Report, Params not initialized when starting sequencer
|
21 May 2024, Thomas Senger, Bug Report, Params not initialized when starting sequencer
|
21 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
21 May 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
22 May 2024, Thomas Senger, Bug Report, Params not initialized when starting sequencer
|
30 Aug 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
04 Sep 2024, Lukas Gerritzen, Bug Report, Params not initialized when starting sequencer
|
04 Sep 2024, Zaher Salman, Bug Report, Params not initialized when starting sequencer
|
|
Message ID: 2751
Entry time: 03 May 2024
In reply to: 2750
|
Author: |
Stefan Ritt |
Topic: |
Bug Report |
Subject: |
Params not initialized when starting sequencer |
|
|
Ok, here is the complete code to reproduce the problem. Load parameter_test.msl which includes functions.msl. From the screenshot you see the variables containing
garbage, and you also see that from the ODB screenshot. For completeness, I added Sequencer.json which contains the whole sequencer tree.
The interesting thing is that this works sometimes, and sometimes not. I'm not sure if this in the GUI or in the sequencer program, so we have to sort out who can
fix it ;-)
Best,
Stefan |
|
INCLUDE functions
PARAM lv_start, "Start of LV", 1.8
PARAM lv_stop, "Stop of LV", 2.1
PARAM lv_step, "Step of LV", 0.02
n_iterations = (($lv_stop - $lv_start)/$lv_step)
MSG "Parameters:"
MSG $lv_start
MSG $lv_stop
MSG $lv_step
MSG $n_iterations
MSG "Start of looping"
LOOP n, $n_iterations
lv_now = $lv_start + $n * $lv_step
MSG $lv_now
WAIT SECONDS, 1
ENDLOOP
|
|
|
|
|
|
|