W801_SDK_dev_env/include/os/wm_os_config.h
2022-11-01 18:22:10 +01:00

19 lines
393 B
C

/**
* @file wm_os_config.h
*
* @brief WM OS select freertos or ucos
*
* @author winnermicro
*
* Copyright (c) 2015 Winner Microelectronics Co., Ltd.
*/
#ifndef __WM_OS_CONFIG_H__
#define __WM_OS_CONFIG_H__
#define OS_CFG_ON 1
#define OS_CFG_OFF 0
#undef TLS_OS_FREERTOS
#define TLS_OS_FREERTOS OS_CFG_ON /*FreeRTOS need to modify wm_config.inc*/
#endif