diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-12 11:23:59 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-02-12 11:23:59 -0500 |
commit | 100cb2f84ac5c44a904f7d7145cdc2ce1dcf59ba (patch) | |
tree | 73079f311b8ff81069bfd615eed0b55c52a5e4b6 /src/task.c | |
parent | 025ed8530ce92d4a2282af8bba1b9e3e93afbb99 (diff) |
libinterp, actually works
Diffstat (limited to 'src/task.c')
-rw-r--r-- | src/task.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ #include <task.h> -#include <heap.h> +#include <stdlib.h> #include <stm32l476xx.h> typedef struct { @@ -21,7 +21,7 @@ void task_init(void (*init)(void)) for (int i = 0; i < MAX_TASKS; i++) tasks[i].use = 0; - task_start(init, 1024); + task_start(init, 4096); asm("\ msr psp, %0; \ mrs r0, control; \ |