Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changes to bi_real_unscr_(2/4x)_init and coeff_gen_init.m #219

Open
wants to merge 1 commit into
base: dev-m2022a-v2023_1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion casper_library/bi_real_unscr_2x_init.m
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function bi_real_unscr_2x_init(blk, varargin)
'load_pin', 'off', ...
'rst', 'on', ...
'en', async, ...
'explicit_period', 'on', ...
'explicit_period', 'explicit', ...
'period', '1', ...
'use_behavioral_HDL', 'on', ...
'implementation', 'Fabric');...
Expand Down
2 changes: 1 addition & 1 deletion casper_library/bi_real_unscr_4x_init.m
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ function bi_real_unscr_4x_init(blk, varargin)
'load_pin', 'off', ...
'rst', 'on', ...
'en', async, ...
'explicit_period', 'on', ...
'explicit_period', 'Explicit', ...
'period', '1', ...
'use_behavioral_HDL', 'on', ...
'implementation', 'Fabric');...
Expand Down
3 changes: 1 addition & 2 deletions casper_library/coeff_gen_init.m
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,7 @@ function coeff_gen_init(blk, varargin)

else,
if strcmp(async, 'off'), %if StepPeriod 0 but no enable, then create constant to enable always
reuse_block(blk, 'en', 'xbsIndex_r4/Constant', ...
'',...
reuse_block(blk, 'en', 'xbsIndex_r4/Constant', ...
'gui_display_data_type', 'Boolean', 'arith_type', 'Boolean', ...
'const', '1', 'explicit_period', 'on', 'period', '1', ...
'Position', [205 44 260 66]);
Expand Down