|
本人按照文档在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 请教大家,这是什么原因导致呢? |
update STM32cubeide 到2.0.0版本,找不到pinout view了!? 哪里出错了??
STM32CubeIDE release v2.0.0更新了
cubeide的代码怎么编译到内部+外部FLASH里面去
CubeIDE2.0.0更新无法打开.ioc文件
有没有大佬更新了CubeIDE2.0.0,在软件内更新后体积大了一倍
有人用过正式版的STM32CubeIDE for Visual Studio Code了吗?
STM32CUBE调试中出现没有 “uwTickPrio() at 0x20000004” 对应的源文件
在STM32CUBEIDE中配置完以后直接编译然后再运行出现《没有 “_end() at 0x20000108” 对应的源文件》
在STM32CUBEIDE中配置完以后直接编译出现《没有 “huart2() at 0x20000108” 对应的源文件》
关于加密环境下使用STM32CubeIDE for 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]找到原因了,公司加密的原因。