Changes between Version 2 and Version 3 of DsxTaskModel
- Timestamp:
- Sep 7, 2006, 9:52:51 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DsxTaskModel
v2 v3 19 19 * a function to call 20 20 * 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) 21 22 22 23 {{{ … … 26 27 impl = [ SwTask( 'tg', 27 28 stack_size = 4096, 28 sources = [ 'src/tg_posix.c' ] ) 29 sources = [ 'src/tg_posix.c' ], 30 defines = ['FILE_NAME'] ) 29 31 ] ) 30 32 }}}