Changes between Version 7 and Version 8 of DsxDocumentation


Ignore:
Timestamp:
Jan 28, 2008, 12:38:12 AM (16 years ago)
Author:
alain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DsxDocumentation

    v7 v8  
    171171used to implement soft real time constraints, a task can receive a signal, but cannot send a signal.
    172172{{{
    173 My_signal = Signal( 'signal_name' )
     173My_Signal = Signal( 'signal_name' )
    174174}}}
    175175There is nothing to place in the mapping section.
     
    182182{{{
    183183My_Task = Task( 'task_name',
    184                               Task_Model ,
    185                              { 'port_name' : My_Channel, 'barrier_name' : My_Barrier, ... } ,
    186                              { 'signal_name : My_signal, ... } )
     184                         Task_Model ,
     185                         { 'port_name' : My_Channel, 'barrier_name' : My_Barrier, ... } ,
     186                         { 'signal_name : My_Signal, ... } )
    187187}}}
    188188In the mapping section of the DSX/L program, 4 software objects must be placed :
     
    196196is the signal defining the dead_line condition.
    197197{{{
    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 )
     198My_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 )
    204204}}}
    205205