]> begriffs open source - freertos/commit
Recently vTaskDelayUntil() was updated to xTaskDelayUntil() because the function...
authorRichardBarry <3073890+RichardBarry@users.noreply.github.com>
Sun, 11 Oct 2020 21:04:49 +0000 (14:04 -0700)
committerGitHub <noreply@github.com>
Sun, 11 Oct 2020 21:04:49 +0000 (14:04 -0700)
commit5fb26de0194b4ebfd09b37128bf9f3ff6d34c1b7
tree925229aedf2a1193b8b26faf7f099f0c97099e20
parent71be31bb61a4af808bd674b2cd4b70f7fa060676
Recently vTaskDelayUntil() was updated to xTaskDelayUntil() because the function now returns a value.  The PR didn't make the same change in the MPU port, or update the constants required to include the xTaskDelayUntil() function in the build. (#199)

This PR:
Changes the INCLUDE_vTaskDelayUntil compile time constant to INCLUDE_xTaskDelayUntil.
Updates FreeRTOS.h to ensure backward compatibility for projects that already have INCLUDE_vTaskDelayUntil defined.
Updates the MPU prototypes, wrapper and implementation to use the updated xTaskDelayUntil() function.

Tests to be checked into the FreeRTOS/FreeRTOS repository after this PR.
include/FreeRTOS.h
include/mpu_prototypes.h
include/mpu_wrappers.h
include/task.h
portable/Common/mpu_wrappers.c
tasks.c