Closed
Description
Hi Guys,
There seems to be an issue with any code running on the M4 talking to the display.
I first noticed it with LVGL running on the M4, but it seems to effect everything.
I have enabled the pattern generator in dsi.cpp with HAL_DSI_PatternGeneratorStart(&dsi, 1, 0);
and everything looks good here, the pattern is fine.
You can replicate with:
#include "Arduino_GigaDisplay_GFX.h"
#include "RPC.h"
GigaDisplay_GFX display;
void setup()
{
RPC.begin();
}
void loop()
{
display.fillScreen(0);
display.fillRect(0,0,100,100, 0xffff);
}