You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The volatile counter power approximator triggers improperly during runtime (only for fsmn_nv_reg_DB policy). This causes miscalculation of the power approximation visible in the report.
The bug is caused by the fact that:
1)vol_cntr1_pa_val triggers when fsm_nv_reg_state = do_operation_s
2) When the machine is in hazard state (voltage trace level below hazard threshold level) a data save is performed. But after that the machine goes back to do_operation_s even if the system is still in hazard.
Possible solution
Add an additional state to fsm_nv_reg_DB that precedes do_operation_s and that is in charge to check the voltage level against defined thresholds. This state will then direct the fsm to the right operation and will be the sink for all of them after completion.
The text was updated successfully, but these errors were encountered:
The volatile counter power approximator triggers improperly during runtime (only for
fsmn_nv_reg_DB policy
). This causes miscalculation of the power approximation visible in the report.The bug is caused by the fact that:
1)
vol_cntr1_pa_val
triggers whenfsm_nv_reg_state = do_operation_s
2) When the machine is in hazard state (voltage trace level below hazard threshold level) a data save is performed. But after that the machine goes back to
do_operation_s
even if the system is still in hazard.Possible solution
Add an additional state to
fsm_nv_reg_DB
that precedesdo_operation_s
and that is in charge to check the voltage level against defined thresholds. This state will then direct the fsm to the right operation and will be the sink for all of them after completion.The text was updated successfully, but these errors were encountered: