
RTOS
文章平均质量分 89
chychc
这个作者很懒,什么都没留下…
展开
-
翻译ecos 手册----HAL架构2
以ARM为例ecos HAL代码树: packages/hal/. |-- common //Common HAL | `-- v3_0 | |-- ChangeLog | |-- cdl | | |-- common.cdl | | |-- debugging.cdl |原创 2012-11-30 11:31:29 · 1024 阅读 · 0 评论 -
翻译ecos 手册----移植指南
Introduction eCos has been designed to be fairly easy to port to new targets. A target is a specific platform (board) using a given architecture (CPU type). The porting is facilitated by the hierar原创 2012-11-30 02:03:32 · 1639 阅读 · 0 评论 -
翻译ecos 手册----HAL架构1
In order to write an eCos HAL it's a good idea to have at least a passing understanding of how the HAL interacts with the rest of the system. 通过修改eCos HAL,可以加深你对HAL与其他系统进行交互的理解。 HAL Classes T原创 2012-11-30 10:43:42 · 1537 阅读 · 0 评论 -
eCos中断模型
eCos中断模型(1)ISR和DSR 中断处理是实时操作系统一个重要部分。及时地处理中断源是很重要的,但一些必须被视为原子操作(不能被中断)的动作对保证及时性带来了十分严重的影响。因为执行这些动作时,都要disable中断。为了最大限度地减少这种动作,确保最可能少的中断延迟,eCos使用了一种分割式中断处理机制,在这种机制中,中断处理被分为两部分。第一部分是大家都知道的中断服务例程(转载 2012-12-18 11:15:09 · 1226 阅读 · 0 评论