Problems updating variable on the callback of a timer

5 vues (au cours des 30 derniers jours)
Ángel González
Ángel González le 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!

Réponses (1)

Christopher Wallace
Christopher Wallace le 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 commentaires
Ángel González
Ángel González le 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 le 20 Sep 2018
If you upload your code I can take a look.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by