Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update why-use-the-rtos.md #33

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quick-start/intro/why-use-the-rtos.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Huawei LiteOS 是一款“软实时”操作系统。

- 轮询模式:main函数死循环,不断的查询状态位(如寄存器),满足条件就去执行相应的函数,完成后继续执行main函数剩下的逻辑。

- 中断模式:main作为为主任务死循环,外部信号触发中断,打断主任务,去处理中断任务,中断处理完自动回到主任务。
- 中断模式:main作为主任务死循环,外部信号触发中断,打断主任务,去处理中断任务,中断处理完自动回到主任务。

## 为什么使用 RTOS

Expand Down