删除文件 System/os_base.h

This commit is contained in:
零中断延迟的RTOS
2024-04-17 13:47:35 +00:00
committed by Gitee
parent 74addcacc1
commit 775ce7a10c

View File

@@ -1,23 +0,0 @@
/**************************************************************************//**
* @item CosyOS-II Kernel
* @file os_base.h
* @brief 基本数据类型定义
* @author 迟凯峰
* @version V2.1.0
* @date 2024.03.31
******************************************************************************/
#ifndef __OS_BASE_H
#define __OS_BASE_H
typedef char s_s8_t;
typedef short s_s16_t;
typedef long s_s32_t;
typedef unsigned char s_u8_t;
typedef unsigned short s_u16_t;
typedef unsigned long s_u32_t;
typedef s_u8_t s_bool_t;
#endif