STM32CubeIDE (MCUs)

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

STM32CubeIDE 1.17.0 released

We are pleased to announce to you that the release 1.17.0 of STM32CubeIDE is available. What is new in 1.17.0: Microcontrollers, microprocessors, and board lists aligned with STM32CubeMX: Added the support for the STM32N6 seriesAdded the support for ...

Board Selection Menu

I need to download and populate the STM32 board selector. Currently in order to select a board, eg: Nucleo series, I will need an internet connection. Is there not a way to download the list and use STM32Cube IDE to select from the downloaded list? T...

techdesk by Associate III
  • 947 Views
  • 5 replies
  • 2 kudos

Resolved! Variadic functions (like prinf)

Hi community,I wrote the following functionUINT PrintOut(const char* format, ...) { va_list args; va_start(args, format); char buffer[1024] = { 0 }; vsprintf(buffer, format, args); va_end(args); return PrintString(buffer); }No problems at co...

Importing drone firmware into STM32CUBEIDE

Not sure if this is the right place to post but for drone firmware such as betaflight or iNav that run off STM32 MCUs like F4xx, how would one go about importing and using the firmware files inside of CUBE IDE so that firmware itself can be changed a...

ZHama.1 by Associate II
  • 1704 Views
  • 4 replies
  • 2 kudos

Using C++ Builder

STMCubeIDE seems to give endless problems. Since the MX can generate c++ code what is the possibility of using all the generated files in C++ Builder? If This is possible, which files should I look for? Has anyone tried this before or will we just ha...

techdesk by Associate III
  • 1951 Views
  • 10 replies
  • 1 kudos

Resolved! linker file

The wizard procedure put in my project this file <STM32U575ZITXQ_FLASH.ld> and this file <STM32U575ZITXQ_RAM.ld>.When is used the first and when the second and where is written in the project which one to use?Because in the linker section, as for Deb...

IVent.1 by Senior
  • 1171 Views
  • 1 replies
  • 1 kudos

STM32F4 libusb-win32 with FREERTOS problem

Hello, I'm using STM32F407VGT board to send and receive data to/from a Nodejs application via libusb. This works correctly when not using freeRTOS, but as soon as i create a freeRTOS task or use any CMSIS function such as  osDelay() the board's usb d...

stm32f407 ftp client

helloim using stm32f407vgt6 and cubeide without os.i configured ethernet using cubemx perfectly.now i need ftp client, i cant find proper resources for do this.thanks for your helps.