Reset in FilterHDL RTL code
2 ビュー (過去 30 日間)
古いコメントを表示
Hello, I would like, when generating RTL code from Filter HDL coder toolbox, to create code with both asynchronous and synchronous resets. Is it possible ? How ? Many thanks in advance
0 件のコメント
回答 (1 件)
Gaurav Phatnani
2018 年 2 月 2 日
Hi Davide,
Unfortunately there is no way to generate code for both Asynchronous and Synchronous Reset Types by calling code generation once. In order to do this you will have to run code generation two times.
You can write a MATLAB script to automate this process. This link has some documentation on the Command Line Interface for HDL code generation.
To change the 'ResetType' from a MATLAB script you can use the following function:
>> hdlset_param(gcs,'ResetType','sync') %change the Reset Type to Synchronous
>> hdlset_param(gcs,'ResetType','async') %change the Reset Type to Asynchronous
参考
カテゴリ
Help Center および File Exchange で Optimization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!