1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-01 03:26:58 +03:00

Fix alignment of continuations stack

This commit is contained in:
Ivan Grokhotkov
2015-06-19 17:25:25 +03:00
parent 7a9563d6c6
commit 66be67ced2
4 changed files with 5 additions and 3 deletions

View File

@ -59,7 +59,7 @@ void preloop_update_frequency() {
extern void (*__init_array_start)(void);
extern void (*__init_array_end)(void);
static cont_t g_cont;
cont_t g_cont __attribute__ ((aligned (16)));
static os_event_t g_loop_queue[LOOP_QUEUE_SIZE];
static uint32_t g_micros_at_task_start;