Hi! Looks like a small bug with setting of pin 14 U1 (output from CPU to LCD) - very small amplitude of LCD_D12 (1V and 50Hz distortions from environment). On original FW there is full amplitude 3V. Because of it there is some graphical noise in a middle of screen (lower bit of Red color is distorted, it viewable on ACQ menu). Maybe this pin it is not programmed as output?
Also because of it startup logo have not quite smooth gradient
Hi _AVP_, welcome to the forum.
Good catch. I did notice something with the display while I did the development, but never looked into it.
And you are absolutely correct that there is a bug. So thanks for mentioning it here.
@Atlan, since you are working on it with new releases, it is easiest if you make the small change. In the function sys_init_display the port configuration register 1 needs not 0x22222227, but 0x22272222. See the code part below. I have not tested it, but it should do the trick. The comment in the source was and is correct, but the actual value was not.

void sys_init_display(uint16 xsize, uint16 ysize, uint16 *address)
{
int32 time;
uint32 *ptr = DISPLAY_CONFIG_ADDRESS;
uint32 checksum = 0;
uint32 index;
//Setup the used port D pins for LCD
*PORTD_CFG0_REG = 0x22222227; //PD00 is not used for the display
*PORTD_CFG1_REG = 0x22272222; //PD12 is not used for the display
*PORTD_CFG2_REG = 0x00222222; //Only 22 pins for port D