| 123456789101112131415161718 |
- /**
- * @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
|