|
本人按照文档在cubeide加入编译命令:"../../../../../../../Utilities/ImageHeader/postbuild_STM32MP13.sh" "${gnu_tools_for_stm32_compiler_path}" "${BuildArtifactFileBaseName}" 编译发现如下错误: "../../../../../../../Utilities/ImageHeader/postbuild_STM32MP13.sh" "D:\CubeIde\STM32CubeIDE_1.14.0\STM32CubeIDE\plugins\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.100.202309141235\tools\bin" "MP13_BSP_BasicTemplates" Postbuild with windows executable <D> readelf_path =<D:\CubeIde\STM32CubeIDE_1.14.0\STM32CubeIDE\plugins\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.100.202309141235\tools\bin/arm-none-eabi-readelf.exe> <D> objcopy_path =<D:\CubeIde\STM32CubeIDE_1.14.0\STM32CubeIDE\plugins\com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.11.3.rel1.win32_1.1.100.202309141235\tools\bin/arm-none-eabi-objcopy.exe> <D> elf_entry_point =<0xc0000000> <D> formatted_ep_addr =<c0000000> Fatal Python error: cannot get zipimporter instance This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. postbuild_STM32MP13.sh failed 请教大家,这是什么原因导致呢? |
cubeIDE编译后如何能把部分代码存放到内部Flash,剩下的存放在外部Flash?
更新了一下VScode,ST最新版本是3.6.4
cubeide的代码怎么编译到内部+外部FLASH里面去
有人用过正式版的STM32CubeIDE for Visual Studio Code了吗?
STM32CubeID V1.19.0 无法识别串口设备
配置CubeMX后(STM32H723VGT6),自动生成的代码,编译报错
基于STM32F103的HAL库实现USB(HID) OTA升级
stm32g431rbt怎么显示汉字
STM32N6中使用AI推理的时候调用app_postprocess_init的时候程序卡死
怎么将keil工程更换为vscode工具链?
微信公众号
手机版
[md]找到原因了,公司加密的原因。
试试这个命令
arm-none-eabi-objcopy -O binary "${BuildArtifactFileBaseName}.elf" "${BuildArtifactFileBaseName}.bin"&& "../postbuild.sh" "." "${BuildArtifactFileBaseName}.bin" "{BuildArtifactFileBaseName}_Signed.bin" "-bt 10" "-ep C0000000"
你是想签名对吧,使用类似这种指令,我最后成功编译了,但是没有生成签名文件。还是需要使用签名工具生成
看报错的内容好像是python 相关的不知道是不是本地python 环境的问题 本地也是这个命令是没报错的
[md]找到原因了,公司加密的原因。