software interrupt
8 views (last 30 days)
Show older comments
MathWorks Support Team
on 22 Jun 2018
Answered: MathWorks Support Team
on 22 Jun 2018
I am developing a near time system data in the data historian have data feed into a program. It fills up a buffer and when the buffer gets full, I want to be able to know that and act on that and do processing.
Is there a software interrupt or something that will allow me to do this?
Accepted Answer
MathWorks Support Team
on 22 Jun 2018
In order to do this, you can use a while loop to continuously fill the buffer and have an if-statement check whether the buffer is full. If it is full, you can run the desired processing in the if statement and then continue filling after the if statement is completed. The while loop can continue to run for however many iterations you would like.
A sample file is attached. Please note this is simplified code just demonstrating the concept described above and does not necessarily account for edge cases nor optimization.
0 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!