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 ...

STM32CubeIDE cannot start my app for STM32F103RC.

hi, all. I made my app with STM32CubeMX for STM32F103RC(of custom board).I compiled with STM32CubeIDE(ver. 1.15.1), but cannot start in IDE. (refer to the atached file.)But after power off/on board, my app works fine.My app is simple, has just one LE...

mcu-down.png
yangbh by Associate II
  • 560 Views
  • 4 replies
  • 3 kudos

FatFs f_open() hard fault

int main(void){FATFS FatFs;FIL fil;FRESULT fr;UINT bw; fr = f_mount(&FatFs, "", 0);if (fr != FR_OK) {return (int)fr;}fr = f_open(&fil, "example.txt", FA_WRITE | FA_CREATE_ALWAYS);if (fr != FR_OK) { f_mount(NULL, "", 0);return (int)fr;}f_close(&fil);}...

meco54 by Associate
  • 513 Views
  • 2 replies
  • 0 kudos

CubeIDE Debug Application with BootLoader

I am porting over an application from SystemWorkbench to CubeIDE. This application has a bootloader and application. The application is loaded at 0x08008000. With SystemWorkbench I added a linker flag of -nmagic, but in CubeIDE that throws an error. ...

Stephen28 by Associate III
  • 2393 Views
  • 5 replies
  • 1 kudos

Flashing code with stlink does not run code

I used the STM32CubeIDE to make a simple LED flashing program for an STM32H753. When I run the code with the CubeIDE, it uploads and flashes the LED as intended.I would like to be able to run this code without the CubeIDE. I am on Mac and have stlink...

JKing.8 by Associate III
  • 2354 Views
  • 8 replies
  • 0 kudos

const volatile objects are not stored in .rodata

I often use const data tables that may be changed by a configuration process at runtime. Depending on how these tables are used, it is sometimes necessary to make them volatile so that accesses to the values are not replaced by the use of inline cons...

CTapp.1 by Senior
  • 688 Views
  • 4 replies
  • 1 kudos

PWM Timer Issue in stm32go70rbt6 controller

Hi All,I'm working on stm32g070rbt6 controller, for vending project.For some requirement implemented PWM timer(i.e. TIM1 & Channel 2) to run the dc motor(i.e. 24V). based on the input from keypad.PWM implemented with soft start from 0 to 1800 which i...

NAdim.1 by Associate II
  • 408 Views
  • 2 replies
  • 0 kudos