1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

fix FAST_RAM_ZERO_INIT

This commit is contained in:
Thorsten Laux 2019-01-11 14:33:12 +01:00 committed by mikeller
parent 33741dce75
commit d9cd6f2cda

View file

@ -57,7 +57,7 @@ static FAST_RAM_ZERO_INIT int taskQueuePos = 0;
STATIC_UNIT_TESTED FAST_RAM_ZERO_INIT int taskQueueSize = 0;
static FAST_RAM_ZERO_INIT schedulerPolicy_e policy;
static FAST_RAM_ZERO_INIT int periodCalculationBasisOffset = offsetof(cfTask_t, lastExecutedAt);
static FAST_RAM int periodCalculationBasisOffset = offsetof(cfTask_t, lastExecutedAt);
// No need for a linked list for the queue, since items are only inserted at startup