You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
256 B
C

#include <stdint.h> // C99 standard integers
#include "sched.h"
#include "bsp.h"
int main() {
BSP_init();
sched_start(TASK_AIRBAG_PRIO, &BSP_deployAirbag);
sched_start(TASK_ABS_PRIO, &BSP_engageABS);
sched_run(); // does NOT return
}