Hello, You should be able to use this display with GUIX, but you will need to do some adjustments and write/port the driver to communicate with the display via I2C. GUIX renders its frames in RAM, but you can get access the callback function that will let you update the display once something has changed on screen. Getting monochrome buffering can be a bit tricky, especially since current GUIX Studio version cannot generate resources that use less than 8 bits per pixel. Also, since you're outputting through serial interface, you won't be able to use GUIX Adaptation framework, D/AVE2D and JPEG Decoder. Have a look at the following project: (Please visit the site to view this file). Inside gui_thread_entry.c, there's an app_display_refresh function that's called every time rendering is finished inside GUIX. You can use it to push the data through the I2C to your display. Regards
↧