Update projects to use the new directory name

IotTaskPool_GetSystemTaskPool has been removed from the cut down version
of the task pool. define IOT_SYSTEM_TASKPOOL to NULL so that the MQTT library
builds successfully.

Use the new #defines in the iot_config.h.
This commit is contained in:
Gaurav Aggarwal 2019-07-23 04:16:32 +00:00
parent 9dd72d4b44
commit 8ea501ef11
6 changed files with 154 additions and 123 deletions

View file

@ -352,11 +352,11 @@ typedef struct IotTaskPoolInfo
#define IOT_TASKPOOL_JOB_HIGH_PRIORITY ( ( uint32_t ) 0x00000001 )
/**
* @brief Allows the use of the handle to the system task pool.
* @brief Allows the use of the system task pool.
*
* @warning The task pool handle is not valid unless @ref IotTaskPool_CreateSystemTaskPool is
* @warning The system task pool handle is not valid unless @ref IotTaskPool_CreateSystemTaskPool is
* called before the handle is used.
*/
#define IOT_SYSTEM_TASKPOOL ( IotTaskPool_GetSystemTaskPool() )
#define IOT_SYSTEM_TASKPOOL ( NULL )
#endif /* ifndef IOT_TASKPOOL_TYPES_H_ */