Changes between Version 7 and Version 8 of DsxDocumentation
- Timestamp:
- Jan 28, 2008, 12:38:12 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DsxDocumentation
v7 v8 171 171 used to implement soft real time constraints, a task can receive a signal, but cannot send a signal. 172 172 {{{ 173 My_ signal = Signal( 'signal_name' )173 My_Signal = Signal( 'signal_name' ) 174 174 }}} 175 175 There is nothing to place in the mapping section. … … 182 182 {{{ 183 183 My_Task = Task( 'task_name', 184 185 186 { 'signal_name : My_signal, ... } )184 Task_Model , 185 { 'port_name' : My_Channel, 'barrier_name' : My_Barrier, ... } , 186 { 'signal_name : My_Signal, ... } ) 187 187 }}} 188 188 In the mapping section of the DSX/L program, 4 software objects must be placed : … … 196 196 is the signal defining the dead_line condition. 197 197 {{{ 198 My_R T_Task = RtTask( 'task_name',199 200 201 { 'signal_name : My_signal, ... } ,202 203 198 My_Rt_Task = RtTask( 'task_name', 199 Task_Model , 200 { 'port_name' : My_Channel, 'barrier_name' : My_Barrier, ... } , 201 { 'signal_name : My_Signal, ... } , 202 cond_activate , 203 cond_deadline ) 204 204 }}} 205 205