About infinite loop in microcomputer
显示 更早的评论
Hi,
I am trying to create an infinite loop of main statement in microcomputer control.
However, input value can not be changed in infinite loop.
It would be greatly appreciated if you could tell me.
回答(1 个)
Mark Sherstan
2018-12-17
Do something such as this (loop runs continously, the function updates every loop and pulls values from your controller or elsewhere):
while 1
out = functionTest()
end
function [out] = functionTest()
% Get some value from microcontroller
end
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!