I have ported my application from Keil to CubeIDE and now the bootloader (not ported and still a Keil project) is not jumping to application.The bootloader is working fine when the application is a Keil project (for many years).The starting point for...
Everything is working fine having the framebuffer in RAM_D1 (0x24000000).This is what I have done trying to move my frame buffer to RAM_D2 (0x30000000):I have setup the "TouchGFX_Framebuffer" in the .ld file to RAM_D2 TouchGFX_Framebuffer : { *(Touc...
Upgraded STM32CubeMX from 5.4.0 to 5.5.0 and H7 firmware package to V1.6.0 and migrated. When generating code it tells me the code is successfully generated but STM32CubeIDEproject generation have a problem.Building the project fails: make: *** No ru...
Posted on September 28, 2015 at 15:39Hi,Does anyone know how the STM32 CAN Transmission Scheduler work?If the mailbox 0 was filled up during transmission of mailbox 1 and there is data in mailbox 2, will the scheduler send mailbox 0 or 2 next? #...
Yes, CubeMX generates the system_stm32l4xx.c file and SystemInit() function.Application use CubeMX V6.11.1 and firmware package L4 V1.18.0The bootloader is also a CubeMX project, but it's been generated with CubeMX 5.4.0 and firmware package L4 V1.14...
I managed to solve my issue.I had my QUADSPI clock prescaler at 1 (25MHz QSPI CLK).Changing this to 0 (50MHz QSPI CLK) or 2 (16.6MHz QSPI CLK) then my QUDSPI data reads got flawless.From the STM32H743 reference manual:
I have the same issue but it is not permanent, it comes once in a while... In my case I have verified that when this happen it's the frame buffer that is corrupt. My setup: custom board, STM32H743, external QUADSPI flash (memory mapped mode), single ...
I'm having the exact same problem. And in Cube MX there is an option in Project Manager -> Advanced Settings to check for "Do Not Generate Function Call" but that does not work either. I have to remove the line MX_TouchGFX_Init() the first time I gen...
I do this with push-buttons in my project and here is the short version of how I do this.I'm using Scrollable Container with custom containers. And my custom container have a flex button and extra text lines.I use the flexButton.setPressed(true/false...