2016-08-06 10:51 AM
I'm not sure that this is the right place to signal a bug. However, I am working with the LCD embedded in the 32F746Discovery board. I noticed a strange behavior during experimentation with scrolling effects and after some debugging, it seems to be related to the function ''BSP_LCD_LayerDefaultInit'' in ''stm32746g_discovery_lcd.c'' file (inside BSP ->STM32746G-Discovery directory.
The wrong code is:/* Layer Init */
layer_cfg.WindowX0 = 0;
layer_cfg.WindowX1 = BSP_LCD_GetXSize();
layer_cfg.WindowY0 = 0;
layer_cfg.WindowY1 = BSP_LCD_GetYSize();
that I modified in:
/* Layer Init */
layer_cfg.WindowX0 = 0;
layer_cfg.WindowX1 = BSP_LCD_GetXSize()-1;
layer_cfg.WindowY0 = 0;
layer_cfg.WindowY1 = BSP_LCD_GetYSize()-1;
I solved the anomaly in this way, but I would like to have feedback from anyone that noticed the same behavior.
2016-08-08 04:04 AM
Hi SerFabio89,
“ I noticed a strange behavior during experimentation with scrolling effects “Could you please provide more explanation on your case, what kind of issue have you faced? -Syrine-