English 中文(简体)
缺少32cubeide报告公司软件包
原标题:stm32cubeide reports firmware package is missing

我有一个STM32 Nucleo F4,我正试图在STMCubeIDE上建立一个新的C项目。

I have STMCubeIDE version 1.5.0 Build: 8698_20201117_1050 (UTC)

在已床位的软件包管理人中,我安装了“STM32Cube MCU成套设备,用于STM32F4系列”,版本1.25.2

然而,当我着手创建一个新的STM32项目(利用理事会的遴选人选择我委员会——NUCLEO-F410RB)时,我收到以下错误信息:

<编码> 不可能最有可能是因为缺少必要的公司意识一揽子计划。 未能完成STM32Cube项目的创建。 See firmware Updater for context related to firmware Pack facilities Tips: 请使用设备配置工具,然后使用“项目”和“通用法”来完成项目的生成。

如果我称之为“项目”,即《通用法》似乎已经完成,但大多数项目档案都缺失,这意味着在某个阶段,法典的制定工作没有保持沉默。

是否有任何想法?

最佳回答

After more searching I finally found this: https://community.st.com/s/question/0D50X0000BeZi12/code-generation-could-not-be-done-firmware-package-v1241-can-not-be-unzipped

The solution from there worked for me:

  1. From this page https://www.st.com/en/embedded-software/stm32cubef4.html download two zips (STM32CubeF4 and Patch-CubeF4)
  2. Unpack first en.STM32Cube_FW_F4_V1.24.0.zip to Repository folder
  3. Then unpack en.patch_cubefw_f4.zip to the same folder with file replacement
  4. Done!

I downloaded V1.25.0 and the patch. The repository folder was under C:/Users//STM32CUBE/Repository

问题回答

我也面临同样的问题,就这一简单问题而言,解决办法非常简单,只是要改变存放地点,为我节省板上的公司信息,我改变了地点表c,然后又一次开始创建新的项目,然后又一次把手脚下载到问题得到解决。

If you have the IDE working, choose menu item Help->"Manage Embedded Software Packages"

它将指导你安装上文提到的“FW”包。 之后,你可将这份齐普档案中的范例作为项目输入





相关问题
I2C, pullup resistors (STM32 discovery)

I am sending my data trought I2C (using DMA every 1s). I´ve added two pullup-resistors to SCK and SDATA. There are now slaves, so because no respond, master send only slave adress and thats all. Its ...

STM32F103 microcontroller CAN messages

I am wondering if anyone is familiar with any STM32f10x micro-controllers? If so, I am having some problems configuring a CAN driver. I can run the demo code, which is set to a loop_Back mode, but I ...

how to program the STM32 flash using openOCD and gdb

I m using an Olimex ARM-USB-OCD dongle with openOCD and GDB to program and debug an stm32f103 micro. The IDE I m using came from the Olimex dev-kit CD and makes use of eclipse ganymede. I can load a ...

Example code for ARM Cortex M3 based MCUs?

More specifically the STM32F107. I could barely find any code on ST s website, not even downloadable libraries (though I have found mention of some that indicates that they should exist?). This ...

STM32 printf and RTC

* UPDATE * Here is what I found. Whenever I had that function in there it wouldn t actually make the code lock up. It would actually make the read RTC I²C function very slow to execute, but the code ...

STM32 I2C1 Start bit not set on SR1 register

I am trying to program the stm32 to talk to my i2c EEprom, but it seems like everytime I say: I2C_GenerateSTART(I2C1, ENABLE); while( !(I2C_CheckEvent(I2C1, I2C_EVENT_MASTER_MODE_SELECT)) ); the ...