zoukankan      html  css  js  c++  java
  • startup_stm32f10x_xx.s 启动代码文件选择

    startup_stm32f10x_cl.s 互联型的器件,STM32F105xx,STM32F107xx
    startup_stm32f10x_hd.s 大容量的STM32F101xx,STM32F102xx,STM32F103xx
    startup_stm32f10x_hd_vl.s 大容量的STM32F100xx
    startup_stm32f10x_ld.s 小容量的STM32F101xx,STM32F102xx,STM32F103xx
    startup_stm32f10x_ld_vl.s 小容量的STM32F100xx
    startup_stm32f10x_md.s 中容量的STM32F101xx,STM32F102xx,STM32F103xx
    startup_stm32f10x_md_vl.s 中容量的STM32F100xx
    startup_stm32f10x_xl.s FLASH在512K到1024K字节的STM32F101xx,STM32F102xx,STM32F103xx

    固件库中的Release_Notes_for_STM32F10x_CMSIS.html写到:

    STM32F10x CMSIS Startup files: startup_stm32f10x_xx.s

    Add new startup files for STM32 Low-density Value line devices: startup_stm32f10x_ld_vl.s Add new startup files for STM32 Medium-density Value line devices: startup_stm32f10x_md_vl.s SystemInit() function is called from startup file (startup_stm32f10x_xx.s) before to branch to application main.
    To reconfigure the default setting of SystemInit() function, refer to system_stm32f10x.c file GNU startup file for Low density devices (startup_stm32f10x_ld.s) is updated to fix compilation errors.
    那到底啥是大容量,小容量啊?又查user manual才知道

     

    也就是说,例如我用STM32F103RB,那么选启动文件为startup_stm32f10x_md.s
    ————————————————
    版权声明:本文为CSDN博主「gasbi」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
    原文链接:https://blog.csdn.net/gasbi/article/details/7545568

  • 相关阅读:
    BigInteger实现除法取余
    BigDecimal介绍及BigDecimal实现四舍五入
    Jenkins的凭证管理
    Adapter(适配器)-类对象结构型模式
    singleton(单件)-对象创建型模式
    ProtoType(原型)-对象创建型模式
    Factory Method(工厂方法)-对象创建型模式
    Builder(生成器)-对象创建型模式
    Abstract Factory(抽象工厂)模式
    设计模式-序
  • 原文地址:https://www.cnblogs.com/dylancao/p/12295061.html
Copyright © 2011-2022 走看看