
本人按照文档在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 请教大家,这是什么原因导致呢? |
STM32F429 二级启动程序 (sboot) 开发难点:LD 文件 / 堆栈 / NVIC 及 startup.s 修改疑问
stm32G071RBT6跑TOUCHGFX的时候使用仪表控件,更新数值的时候会卡死,怎么解决
touchgfx添加文字不能显示,直接死(HardFault_Handler)
STM32CubeIDE 2.0 有啥新变化?
STM32MP135D的TIM2使用ETR作为外部时钟时,无法使用PE15作为输入
CubeIDE生成MP257的M33工程出现RCC配置问题(Bug?)
2.0 CubeIDE大概更新时间?
STM32CUBEIDE BUG
STM32CubeIDE 2.0开发下载了吗
新版STM32CubeIDE会不会提供Deepseek
[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]找到原因了,公司加密的原因。