Problems updating variable on the callback of a timer

3 Ansichten (letzte 30 Tage)
Ángel González
Ángel González am 19 Sep. 2018
Hi there! I'm trying to get a while-loop to exit depending on two variables; one of them is changed when a time is passed (using a timer). The other one is changed inside the while loop after a condition. All this while loop is also inside a for a loop.
Here is a draft of my code:
for i=i:N %%N defined previously
...
% Some operations
...
x = false;
timer_ event = false;
timer_1 = timer('StartDelay', time_limit, 'TimerFcn', 'timer_event = true');
start(timer_1);
while((x == false) && (timer_event == false))
pause(0.0334)
...
% get samples
...
if(%condition)
x = true;
end
end
delete(timer_1);
end
The question here is that the while-loop only breaks when the x variable changes the value, but nothing happens when the timer callback changes the value of the timer_event variable.
Thank you so much!

Antworten (1)

Christopher Wallace
Christopher Wallace am 19 Sep. 2018
Use the 'UserData' property of the timer to access data set within the timer function.
Look at the function I've attached to create a timer that modifies the UserData every period.
After running the function if you were to start the timer and repeatedly query the UserData you'll see it changing from true to false.
t = createTimer;
start(t);
get(t, 'UserData')
returns
>> get(t, 'UserData')
ans =
timer_event: 0
>> get(t, 'UserData')
ans =
timer_event: 1
  2 Kommentare
Ángel González
Ángel González am 20 Sep. 2018
I will take a look at that, but I have been trying different things on my code. The StartDelay property of the timer depends on a value introduced in GUI. When I use a constant StartDelay, everything works fine...but when I try to use a StartDelay introduced via GUI, the timer goes wrong.
Christopher Wallace
Christopher Wallace am 20 Sep. 2018
If you upload your code I can take a look.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by