Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos M
提交
8e3a4325
K
Kernel Liteos M
项目概览
OpenHarmony
/
Kernel Liteos M
大约 1 年 前同步成功
通知
20
Star
28
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos M
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
8e3a4325
编写于
4月 21, 2021
作者:
O
openharmony_ci
提交者:
Gitee
4月 21, 2021
浏览文件
操作
浏览文件
下载
差异文件
!36 Fixed mixed CH and En characters
Merge pull request !36 from davidinux/master
上级
4474869a
742f65d8
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
29 addition
and
29 deletion
+29
-29
arch_spec.md
arch_spec.md
+29
-29
未找到文件。
arch_spec.md
浏览文件 @
8e3a4325
```
.
├── components ---
可选组件,可裁剪,依赖kernel
│ ├── cppsupport --- C++
支持
│ └── cpup --- CPUP
功能
├── kal ---
内核抽象层
│ ├── cmsis --- cmsis
标准支持
│ └── posix --- posix
标准支持
├── kernel ---
内核最小功能集支持
│ ├── arch ---
硬件架构相关
│ │ ├── arm --- arm32
架构
│ │ │ └── cortex-m4 --- cortex-m4
架构
│ │ │ └── iar
---
├── components ---
Optional components
│ ├── cppsupport --- C++
│ └── cpup --- CPUP
├── kal ---
Kernel Abstraction Layer
│ ├── cmsis --- cmsis
│ └── posix --- posix
├── kernel ---
Minimalistic kernel funtionalities
│ ├── arch ---
Support for hardware architectures
│ │ ├── arm --- arm32
│ │ │ └── cortex-m4 --- cortex-m4
│ │ │ └── iar
│ │ │ ├── los_atomic.h
│ │ │ ├── los_context.h
│ │ │ ├── los_interrupt.h
│ │ │ └── los_mpu.h
│ │ └── include
│ │ ├── los_arch_atomic.h ---
定义通用arch的原子操作
│ │ ├── los_arch_context.h ---
定义通用arch的上下文切换
│ │ ├── los_arch.h ---
定义通用arch初始化
│ │ └── los_arch_interrupt.h ---
定义通用arch中断
│ │ ├── los_arch_atomic.h ---
Atomic operations
│ │ ├── los_arch_context.h ---
Context switch
│ │ ├── los_arch.h ---
Initialization
│ │ └── los_arch_interrupt.h ---
Interrupts
│ ├── include
│ │ ├── los_config.h ---
功能开关和配置参数
│ │ ├── los_event.h ---
事件
│ │ ├── los_liteos.h ---
liteos最小功能集对外提供的头文件
│ │ ├── los_memory.h ---
堆内存管理
│ │ ├── los_mutex.h ---
互斥锁
│ │ ├── los_queue.h ---
队列
│ │ ├── los_scheduler.h ---
调度算法
│ │ ├── los_sem.h ---
信号量
│ │ ├── los_task.h ---
任务
│ │ └── los_timer.h ---
定时器
│ │ ├── los_config.h ---
Configuration parameters
│ │ ├── los_event.h ---
Events management
│ │ ├── los_liteos.h ---
Kernel types and functions
│ │ ├── los_memory.h ---
Heap memory management
│ │ ├── los_mutex.h ---
Mutex
│ │ ├── los_queue.h ---
Queue
│ │ ├── los_scheduler.h ---
Scheduler
│ │ ├── los_sem.h ---
Semaphores
│ │ ├── los_task.h ---
Tasks
│ │ └── los_timer.h ---
Timer
│ └── src
├── targets
│ └── targets
...
...
@@ -40,13 +40,13 @@
│ ├── Libraries
│ ├── main.c
│ ├── project
│ ├── target_config.h ---
板级配置功能开关和配置参数
│ ├── target_config.h ---
Hardware target configuration
│ └── Utilities
└── utils
├── include
│ ├── los_compiler.h ---
编译工具配置,类型定义
│ ├── los_debug.h ---
debug,printf相关
│ ├── los_error.h ---
错误定义
│ ├── los_compiler.h ---
Compiler configuration
│ ├── los_debug.h ---
Debugging facilities
│ ├── los_error.h ---
Errors codes and definitions
│ └── los_list.h
└── src
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录