wm_os_config.h 393 B

123456789101112131415161718
  1. /**
  2. * @file wm_os_config.h
  3. *
  4. * @brief WM OS select freertos or ucos
  5. *
  6. * @author winnermicro
  7. *
  8. * Copyright (c) 2015 Winner Microelectronics Co., Ltd.
  9. */
  10. #ifndef __WM_OS_CONFIG_H__
  11. #define __WM_OS_CONFIG_H__
  12. #define OS_CFG_ON 1
  13. #define OS_CFG_OFF 0
  14. #undef TLS_OS_FREERTOS
  15. #define TLS_OS_FREERTOS OS_CFG_ON /*FreeRTOS need to modify wm_config.inc*/
  16. #endif