Prusa MINI Firmware overview
guiconfig.h
Go to the documentation of this file.
1 //guiconfig.h - guiapi configuration file
2 #ifndef _GUICONFIG_H
3 #define _GUICONFIG_H
4 
5 //--------------------------------------
6 //GUI configuration
7 #define GUI_USE_RTOS
8 #define GUI_JOGWHEEL_SUPPORT
9 #define GUI_WINDOW_SUPPORT
10 
11 //--------------------------------------
12 //FreeRTOS Signals
13 
14 //redraw (gui thread is waiting for this signal, window_0.draw is called)
15 #define GUI_SIG_REDRAW 0x0001
16 
17 //st7789v - spi DMA transmit complete (triggered from callback, gui thread is waiting for this signal)
18 #define ST7789V_SIG_SPI_TX 0x0008
19 
20 #define MENU_TIMEOUT_MS 30000
21 //--------------------------------------
22 //ST7789v configuration
23 #define ST7789V_USE_RTOS
24 #define ST7789V_PNG_SUPPORT
25 
26 #endif //_GUICONFIG_H