I have same problem on STM32L433RCI.After entering shutdown mode microcontroller restarts every other time.1 attempt: reset2 attempt: stays in shutdown3 attempt: reset4 attempt: stays in shutdown...my code isvoid enter_shutdown (void)
{
__HAL_PWR_C...
Thank you! With this option everything works well.Data and instructions caches and MPU are enabled.STemwin and FatFs tasks stack size are 1024 words both, heap_4.
I encountered a similar problem on the STM32F746G-Discovery. CubeMX 4.27.0 / 1.12.0. FatFs started working only if the GRAPHICS_Init () function was removed.The problem disappeared when I turned off the data cache SCB_DisableDCache (); at the beginni...
Posted on March 01, 2016 at 13:57
Simple way is to change DrawPixel function instm32f429i_discovery_lcd.c
Default, no rotataion:
void BSP_LCD_DrawPixel(uint16_t Xpos, uint16_t Ypos, uint32_t RGB_Code)
{
/* Write data value to all S...