Merge branch 'feature/freertos_timer_task_optional' into 'master'

freertos: save up to 4 kB of RAM if timer functionality is not used by the app

See merge request espressif/esp-idf!10721
This commit is contained in:
Angus Gratton 2020-10-08 11:26:13 +08:00
commit 4289ca3e0e

View File

@ -5137,3 +5137,8 @@ TickType_t uxReturn;
#include "tasks_test_access_functions.h"
#endif
/* If timers.c is not referenced anywhere, don't create the timer task to save RAM */
BaseType_t __attribute__((weak)) xTimerCreateTimerTask( void )
{
return pdPASS;
}