XFusion API v1.3.0
载入中...
搜索中...
未找到
xf_hal_kernel_config.h
浏览该文件的文档.
1
12#ifndef __XF_HAL_KERNEL_CONFIG_H__
13#define __XF_HAL_KERNEL_CONFIG_H__
14
15/* ==================== [Includes] ========================================== */
16
17#include "../xf_hal_config_internal.h"
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/* ==================== [Defines] =========================================== */
24
25#if (!defined(XF_HAL_LOCK_DISABLE))||(XF_HAL_LOCK_DISABLE)
26# define XF_HAL_LOCK_IS_ENABLE (0)
27#else
28# define XF_HAL_LOCK_IS_ENABLE (1)
29#endif
30
31#if (!defined(XF_HAL_POSIX_DISABLE))||(XF_HAL_POSIX_DISABLE)
32# define XF_HAL_POSIX_IS_ENABLE (0)
33#else
34# define XF_HAL_POSIX_IS_ENABLE (1)
35#endif
36
37/* ==================== [Typedefs] ========================================== */
38
39/* ==================== [Global Prototypes] ================================= */
40
41/* ==================== [Macros] ============================================ */
42
43#ifdef __cplusplus
44} /* extern "C" */
45#endif
46
47#endif // __XF_HAL_KERNEL_CONFIG_H__