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

相关文章:

  • 2021-10-26
  • 2022-12-23
  • 2021-04-09
  • 2021-12-06
  • 2021-08-31
  • 2021-11-17
  • 2021-03-30
  • 2021-11-14
猜你喜欢
  • 2021-07-15
  • 2021-07-26
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
  • 2021-04-12
相关资源
相似解决方案