Go to the documentation of this file.   13 #define MAX_MESSAGE_SIZE 255    18 #define MAX_LEVEL_INT_NESTING 3    22 #define SYS_TICK_MS 100    24 #if (SYS_TICK_MS <= 100)    25 #define SYS_TICK_PERIOD_MS SYS_TICK_MS    27 #define SYS_TICK_PERIOD_MS 100    29 #define MS_2_TICKS(MS)\    32   #error "SYS_TICK_MS can not be smaller than 1."    34 #if ( (SYS_TICK_MS%1) != 0)    35   #error "SYS_TICK_MS has to be a natural number."    40 #define MAX_SIZE_TASK_NAME 20    41 #define MAX_NUMBER_OF_TASKS 4    44 #if (MAX_NUMBER_OF_TASKS > HEAP_SIZE)    45   #warning "HEAP_SIZE < MAX_NUMER_OF_TASKS: This might lead to problems."    49 #define ALIVE_PULSE_LENGTH MS_2_TICKS(200)    53 #define CONVERT_NEWLINE    55 #define STD_STRING_BUFFER_SIZE 128