From fb620868102db21d4fe2a6d0474b75217a32731a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=B5=A9?= Date: Tue, 30 Apr 2019 19:05:18 +0800 Subject: [PATCH] Update why-use-the-rtos.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除多余的字“为" --- docs/quick-start/intro/why-use-the-rtos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-start/intro/why-use-the-rtos.md b/docs/quick-start/intro/why-use-the-rtos.md index eef262b..1c6442d 100644 --- a/docs/quick-start/intro/why-use-the-rtos.md +++ b/docs/quick-start/intro/why-use-the-rtos.md @@ -19,7 +19,7 @@ Huawei LiteOS 是一款“软实时”操作系统。 - 轮询模式:main函数死循环,不断的查询状态位(如寄存器),满足条件就去执行相应的函数,完成后继续执行main函数剩下的逻辑。 -- 中断模式:main作为为主任务死循环,外部信号触发中断,打断主任务,去处理中断任务,中断处理完自动回到主任务。 +- 中断模式:main作为主任务死循环,外部信号触发中断,打断主任务,去处理中断任务,中断处理完自动回到主任务。 ## 为什么使用 RTOS