up freertos v9.0.0

This commit is contained in:
pvvx 2017-05-08 04:55:33 +03:00
parent abb51466bd
commit b882fe7efb
132 changed files with 50587 additions and 2707 deletions

View file

@ -90,9 +90,27 @@
extern "C" {
#endif
#ifndef _PLATFORM_AUTOCONFIG_H_
#include "platform_autoconf.h"
#endif
/* Application specific configuration options. */
#include "FreeRTOSConfig.h"
//-----------
#if defined(CONFIG_PLATFORM_8195A)
#ifndef CONFIG_USE_TCM_HEAP
#define CONFIG_USE_TCM_HEAP
#endif
#ifndef configUSE_STACK_TCM_HEAP
#define configUSE_STACK_TCM_HEAP 1
#endif
#else
#undef configUSE_STACK_TCM_HEAP
#define configUSE_STACK_TCM_HEAP 0
#endif
//-----------
/* Basic FreeRTOS definitions. */
#include "projdefs.h"