Functions

The REGISTER_FOR_EVENT and the FIRE_EVENT APIs are complementary procedure calls which are meant to be utilized in tandem. One application module uses the FIRE_EVENT procedure call to request that the framework module fire an event on event_index, while another application module calls the REGISTER_FOR_EVENT procedure call to schedule a state machine transition if and when event number event_index is received. In addition, the caller of FIRE_EVENT can also request to transition to state transition_state after any application module receives the fired event. This acknowledgment type behavior can be used as a form of synchronization between application modules, without the need to write any additional code.

When compared to other framework communication schemes, event firing can be viewed as a broadcast mechanism. Whereas, WRITE_FIFO_DATA can be viewed as a data path mechanism and the SHARED_REGISTER procedure can be viewed as a control path mechanism. The REGISTER_FOR_EVENT and FIRE_EVENT APIs also provide better semantics than using a SHARED_REGISTER procedure call when only a notification is needed and there is no need to pass data. In addition, firing events has the advantage of explicitly tying a change in the system state to a change in a state machine state.

Example API Call(s):

FIRE_EVENT( 0, st_sync, next_state_rec, state_reg_rec );

Call Data [ 4 parameters (4 mandatory) ]

Parameters
[in]event_index[1] framework event number
[in]transition_state[2] state to transition to after receiving an event or an acknowledgement of reception of an event
[out]next_state_rec[3]
[in]state_reg_rec[4]

Return Data

Parameters
[in]state_reg_rec(M).event_vector(N)[1] [std_logic] value asserted by from framework when an application module requests an event

Command Reference

Voice and Hotkey Commands:

See also
Fire Event Commands

Command Parameter Mapping

Parameters
[in]event_index[1] "index <integer>"
[in]transition_state[2] "go to [state] (<state>|<integer>)"

Command Return Data

Parameters
[in]state_reg_rec(M).event_vector(N)[1] [std_logic] "event <integer>"

Voice/HotKey Command Sequence

Voice Command HotKey Sequence
"fire event one" fe1
"go to state received" goto st_received

Usage Example

Todo:
Add Example Usage

Notes and Warnings

Note
1) If a high number of events are needed (greater than 4) within a single application module, it is recommended to place some events on another resource index. 2) If the caller of FIRE_EVENT transitions due to an acknowledgement, that transition will occur 2 clock cycles after the reception of the event. Whereas the transition for application module that called REGISTER_FOR_EVENT will occur 1 clock cycles after the reception of the event.

See also
REGISTER_FOR_EVENT
TRANSITION
CONDITIONAL_TRANSITION
STATE MACHINE CONSTRUCTION

Procedures

  FIRE_EVENT(
event_index: natural
transition_state: integer
signal next_state_rec: out NSR
state_reg_rec: in SRR
)
  FIRE_EVENT(
event_index: natural
transition_state: integer
signal next_state_rec: out NSR_ARRAY
state_reg_rec: in SRR_ARRAY
)
 overloaded for array interface