Changes between Version 2 and Version 3 of DsxTaskModel


Ignore:
Timestamp:
Sep 7, 2006, 9:52:51 PM (18 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DsxTaskModel

    v2 v3  
    1919 * a function to call
    2020 * a list of C source files (even if some files are shared between tasks, you must redeclare them in each using task implementation definition)
     21 * a list of defines to be defined later (arg `defines = {}` on task instanciation)
    2122
    2223{{{
     
    2627        impl = [ SwTask( 'tg',
    2728                         stack_size = 4096,
    28                          sources = [ 'src/tg_posix.c' ] )
     29                         sources = [ 'src/tg_posix.c' ],
     30                         defines = ['FILE_NAME'] )
    2931               ] )
    3032}}}