Pause of Fractional Seconds in Generated Code
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michael
am 1 Feb. 2023
Kommentiert: Matthew DiBello
am 6 Feb. 2023
The help file for pause.m says the following in the notes about Code Generation:
The generated code truncates pause delay values to uint32 range during run-time execution.
I believe that means that fractional seconds less than 0.5 s (i.e. pause(0.1) ) will round to zero and no pause will happen in the generated code. Can someone confirm this?
If I am correct about this, is there a work around to do fractional exectuation pauses in generated code?
0 Kommentare
Akzeptierte Antwort
Matthew DiBello
am 3 Feb. 2023
Bearbeitet: Matthew DiBello
am 6 Feb. 2023
Hi Michael,
Your understanding is incorrect. In code generation, pause supports fractional values. The line from the documentation that you are referring to indicates that the maximum sleep duration is the max value of uint32.
Best,
Matthew
4 Kommentare
Matthew DiBello
am 6 Feb. 2023
The code generation implementation of pause uses nanosleep on POSIX systems and Sleep on Windows systems. If you want to see exactly how it's implemented, you can run non-MEX code generation and then use packNGo to get all the source in one place.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!