Keil5

Keil5扩展命令

问题描述 使用keil5有过反汇编及生成bin文件的需求,但是keil5最多只支持两个命令,若在想使用工具对固件进行签名、加密等操作就不够用了。 fromelf –text -a -c –output=bootloader.dis Objects\bootloader2.axf fromelf –bin –output=bootloader.bin Objects\bootloader2.axf 使用keil关键字简写如下: fromelf –text -a -c -o “$L@L.dis” “#L”…

Read More
FreeRTOS Keil5 STM32

FreeRTOS从零搭建开发环境

说明 FreeRTOS学习笔记 搭建STM32F4HAL库开发环境 GitHub上ST官方库:https://github.com/STMicroelectronics/STM32CubeF4 由于github仓库使用git submodule命令创建的,不能直接下载zip压缩包,需要使用git指令下载: git clone –recursive https://github.com/STMicroelectronics/STM32CubeF4.git git pull git submodule update –init –recursive 硬件开发环境: 正点原子STM32F429IGT6开发板 keil5…

Read More