Hi NXP.
I would like to use the LCD for Raspberry Pi with GUI Guider1.81, MIMRT1170-EVKB, and the RASPI_7INCH option.
However, at the moment, even if I write the GUI Guider sample project, it does not work properly and the screen remains black.
The project on the site below has a working RaspberryPi LCD (probably a project created with GUI Guider).
https://github.com/nxp-appcodehub/dm-lvgl_cluster_rt1170_evkb_rpi
After checking the differences and porting the necessary parts of the source code from github above to the source code output by GUI Guider,
I was able to display the LCD screen.
-Ported display_support.c

--left Github src / right gui guider output src
--I guess GPIO control via PCA6416 IO expander is required
-Ported pca6416.c/h, pca9530.c/h, rpi.c/h
-Ported the contents of the talk_to_raspi() function from lvgl_guider.c to rpi.c

--github src lvgl_guider.c
-- I think this initialization function is necessary,
but I think it would be better to have it in rpi.c/fsl_rpi.c rather than lvgl_guider.c where the main function is located.
-Deleted fsl_rpi.c/h
However, this is an inconvenient situation,
so I hope that they will fix it so that RASPI_7INCH can run as is with the source code output by GUI Guider.