defines.h 669 Bytes
Newer Older
Tobias Langer committed
1 2 3 4 5
/**
 * Automatically generated declarations for the experiment.
 * Plese don't modify manually, but use the generator.py script.
 */

6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
{{#includes}}
#include{{name}}
{{/includes}}

{{#data_description}}
    struct {{name}} {
        {{#fields}}
        {{type}} {{name}};
        {{/fields}}
    };
{{/data_description}}

{{#data}}
    {{type}} {{name}}[] = { 
    {{#elem}}
        .wcet = {{wcet}}
        .period = {{period}}
        .deadline = {{deadline}}
        .periodical = {{periodical}}
        .ticktype = {{ticktype}}
    {{/elem}}
    };
{{/data}}

{{#executions}}
int executions = 500;
{{/executions}}
{{^executions}}
int executions = 1;
{{/executions}}