Pause of Fractional Seconds in Generated Code

2 ビュー (過去 30 日間)
Michael
Michael 2023 年 2 月 1 日
コメント済み: Matthew DiBello 2023 年 2 月 6 日
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?

採用された回答

Matthew DiBello
Matthew DiBello 2023 年 2 月 3 日
編集済み: Matthew DiBello 2023 年 2 月 6 日
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 件のコメント
Michael
Michael 2023 年 2 月 6 日
@Matthew DiBello That's interesting because my limited testing so far seem to show significantly higher CPU usage when I used 'pause' rather than the ceval('usleep'...) in my generated code. It seemed to me to be a busy idle while loop (pausing for 0) that was fixed when I started using ceval. I can do more testing with this to confirm.
Either way, I think the pause help file could stand to be updated. Can you make a request of the documentation team to clarify this? Thanks for digging into this.
Matthew DiBello
Matthew DiBello 2023 年 2 月 6 日
@Michael - I will follow up with our Documentation team to improve the help file for pause.
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.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Coder についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by