after purchasing the board I start to run the standard display from the kit,
after which I go on to experiments with my display and have a questions.
How to correctly convert initialization MIPI DSI commands into the format as know esp32:
Code: Select all
LCM_Reset(LOW);
Delay(1); //1ms
LCM_Reset(HIGH);
Delay(5); //5ms
MIPI_Write(DCSLongWrite,6,0xF0,0x55,0xAA,0x52,0x08,0x00);
MIPI_Write(DCSWriteOneParameter,2,0xD0,0x22);
MIPI_Write(DCSWriteNoParameter,1,0x11);
and how do I correctly record the short and long recording commands?