Fixes for enums in TactilityC (#404)
This commit is contained in:
committed by
GitHub
parent
569cce38fa
commit
e2ec39304c
@@ -5,12 +5,12 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/** Affects LVGL widget style */
|
||||
enum UiScale {
|
||||
typedef enum {
|
||||
/** Ideal for very small non-touch screen devices (e.g. Waveshare S3 LCD 1.3") */
|
||||
UiScaleSmallest,
|
||||
/** Nothing was changed in the LVGL UI/UX */
|
||||
UiScaleDefault
|
||||
};
|
||||
} UiScale;
|
||||
|
||||
/** @return the UI scaling setting for this device. */
|
||||
UiScale tt_hal_configuration_get_ui_scale();
|
||||
|
||||
Reference in New Issue
Block a user