Clear Filters
Clear Filters

About infinite loop in microcomputer

1 view (last 30 days)
Hiroki Tanaka
Hiroki Tanaka on 16 Dec 2018
Answered: Mark Sherstan on 17 Dec 2018
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.

Answers (1)

Mark Sherstan
Mark Sherstan on 17 Dec 2018
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

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2017a

Community Treasure Hunt

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

Start Hunting!