keil RTE_Device.h

RTE_Device.h作用:用于配置驱动程序。
这是因为CMSIS-Driver require I/O pin assignments and optional setup for the DMA
CMSIS驱动程序需要为DMA分配I/O引脚和可选设置。
ARM Cortex™ 微控制器软件接口标准(CMSIS:Cortex Microcontroller Software Interface Standard) 是 Cortex-M 处理器系列的与供应商无关的硬件抽象层(英文原文为:a vendor-independent hardware abstraction layer for the Cortex-M processor series and defines generic tool interfaces--来自ARM官方定义)
说白了,ARM要求使用Cortex内核的厂商必须按照CMSIS标准来设计芯片,半导体厂商在二次设计芯片的时候是:内核+片内外设(定时器、时钟、看门狗等等,都是寄存器)
否则不同厂商使用相同的内核,在软件上因为厂家外设设计的不同,
CMSIS目录是函数固件库的核心文件:CMSIS向下负责与内核和各个外设直接打交道,向上提供实时操作系统用户程序调用的函数接口。若无CMSIS标准,那么各个公司设计的库函数就会不同。
CM3\CoreSupport下的core_cm3.c、core_cm3.h是CMSIS的核心文件,提供进入Crotex-M3内核的接口,这是由ARTM公司提供的,对所有M3内核的芯片都适用。
https://blog.csdn.net/stwuyiyu/article/details/89636627?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-15.nonecase&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-15.nonecase

posted @ 2020-07-09 15:31  Scrazy  阅读(1437)  评论(0编辑  收藏  举报