本帖最后由 Etual 于 2012-6-29 10:08 编辑
使用了ST的库,感觉体积有点大,点亮个 LED 使用了 2.5K flash 了。
一个简单的瘦身办法,也就是,将不使用的函数剔除,不连接进去最终的烧写文件,有用的函数连接进去,没用的函数不要。
只需要2步
设置项目属性
1,在 Linker 页的 Misc contrrols 那里添加 --remove
作用是将不使用的输入段(input sections)移除。
--remove 这个参数是Keil 默认已经开启的,所以加不加都一样 , Etual 2012-6-29 修改
2,单加上面那个是没有效果的,因为一个文件作为一个输入段的话就没效果了。
所以下面的操作是将每个函数作为一个输入段,这就可以优化了。方法是
在 C/C++ 页勾选 “One ELF Section per Function” 就可以了
优化我一般选 -02
重新编译,原来 2.5K 的程序,现在变成 1.2K 了 ......
今天摸索出来的办法,不知道有没有人发过
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
你的程序应该是内存问题。仔细检查每一个内存申请和释放。
还可以再优化 库里占空间的是参数检测 把参数检测的宏定义屏蔽 就基本上和你使用寄存器操作一样的大小了。 同样适用 STM8S的库 ,比如如下的一个库函数中的参数检测
- /* Check the parameters */
- assert_param(IS_ADC_ALL_PERIPH(ADCx));
- assert_param(IS_ADC_MODE(ADC_InitStruct->ADC_Mode));
- assert_param(IS_FUNCTIONAL_STATE(ADC_InitStruct->ADC_ScanConvMode));
- assert_param(IS_FUNCTIONAL_STATE(ADC_InitStruct->ADC_ContinuousConvMode));
- assert_param(IS_ADC_EXT_TRIG(ADC_InitStruct->ADC_ExternalTrigConv));
- assert_param(IS_ADC_DATA_ALIGN(ADC_InitStruct->ADC_DataAlign));
- assert_param(IS_ADC_REGULAR_LENGTH(ADC_InitStruct->ADC_NbrOfChannel));
复制代码在库的配置头文件(XX_conf.h)中可以屏蔽到这个检测(第3行 实际上注释已经写的很清楚了。- /* Uncomment the line below to expanse the "assert_param" macro in the
- Standard Peripheral Library drivers code */
- /* #define USE_FULL_ASSERT 1 */
- /* Exported macro ------------------------------------------------------------*/
- #ifdef USE_FULL_ASSERT
- /**
- * @brief The assert_param macro is used for function's parameters check.
- * @param expr: If expr is false, it calls assert_failed function
- * which reports the name of the source file and the source
- * line number of the call that failed.
- * If expr is true, it returns no value.
- * @retval None
- */
- #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__))
- /* Exported functions ------------------------------------------------------- */
- void assert_failed(uint8_t* file, uint32_t line);
- #else
- #define assert_param(expr) ((void)0)
- #endif /* USE_FULL_ASSERT */
复制代码一周热门 更多>