mirror of
https://gitee.com/cosyos/cosyos.git
synced 2026-02-06 03:41:41 +08:00
29 lines
699 B
C
29 lines
699 B
C
/**************************************************************************//**
|
|
* @item CosyOS-III Kernel
|
|
* @file CosyOS.H
|
|
* @brief 系统链接头文件
|
|
* @details 用户的各个c文件中应包含此文件。
|
|
* @author 迟凯峰
|
|
* @version V2.0.0
|
|
* @date 2025.08.04
|
|
******************************************************************************/
|
|
|
|
#ifndef __COSYOS_H
|
|
#define __COSYOS_H
|
|
|
|
#include "os_var.h"
|
|
#include "os_api.h"
|
|
#include "sv_com.h"
|
|
#include "sv_create.h"
|
|
#include "sv_task.h"
|
|
#include "sv_tick.h"
|
|
#include "sv_int_loc.h"
|
|
#include "sv_int_pend.h"
|
|
#include "sv_int_pend_fifo.h"
|
|
#include "ur_api.h"
|
|
#include "ur_eapi.h"
|
|
|
|
|
|
|
|
#endif
|