@@ -31,6 +31,7 @@ static const char *TAG = "display_driver";
3131
3232Context * acep_5in65_7c_display_driver_create_port (GlobalContext * global , term opts );
3333Context * ili934x_display_create_port (GlobalContext * global , term opts );
34+ Context * ili948x_display_create_port (GlobalContext * global , term opts );
3435Context * memory_lcd_display_create_port (GlobalContext * global , term opts );
3536Context * ssd1306_display_create_port (GlobalContext * global , term opts );
3637Context * st7789_display_create_port (GlobalContext * global , term opts );
@@ -60,6 +61,10 @@ Context *display_create_port(GlobalContext *global, term opts)
6061 ctx = ili934x_display_create_port (global , opts );
6162 } else if (!strcmp (compat_string , "ilitek,ili9342c" )) {
6263 ctx = ili934x_display_create_port (global , opts );
64+ } else if (!strcmp (compat_string , "ilitek,ili9486" )) {
65+ ctx = ili948x_display_create_port (global , opts );
66+ } else if (!strcmp (compat_string , "ilitek,ili9488" )) {
67+ ctx = ili948x_display_create_port (global , opts );
6368 } else if (!strcmp (compat_string , "solomon-systech,ssd1306" )) {
6469 ctx = ssd1306_display_create_port (global , opts );
6570 } else if (!strcmp (compat_string , "sino-wealth,sh1106" )) {
0 commit comments