Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Devices/btt-panda-touch/device.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ spiRamSpeed=120M
esptoolFlashFreq=120M

[display]
size=2.4"
size=5"
shape=rectangle
dpi=139
dpi=187

[lvgl]
colorDepth=16
2 changes: 1 addition & 1 deletion Devices/wireless-tag-wt32-sc01-plus/device.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ esptoolFlashFreq=80M
[display]
size=3.5"
shape=rectangle
dpi=139
dpi=165

[lvgl]
colorDepth=16
20 changes: 20 additions & 0 deletions TactilityC/Source/tt_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ const esp_elfsym main_symbols[] {
ESP_ELFSYM_EXPORT(lv_event_get_target_obj),
ESP_ELFSYM_EXPORT(lv_event_get_target),
ESP_ELFSYM_EXPORT(lv_event_get_current_target_obj),
ESP_ELFSYM_EXPORT(lv_event_get_draw_task),
// lv_obj
ESP_ELFSYM_EXPORT(lv_color_hex),
ESP_ELFSYM_EXPORT(lv_color_make),
Expand Down Expand Up @@ -459,6 +460,11 @@ const esp_elfsym main_symbols[] {
ESP_ELFSYM_EXPORT(lv_obj_set_size),
ESP_ELFSYM_EXPORT(lv_obj_set_width),
ESP_ELFSYM_EXPORT(lv_obj_set_height),
ESP_ELFSYM_EXPORT(lv_obj_send_event),
ESP_ELFSYM_EXPORT(lv_obj_set_style_outline_color),
ESP_ELFSYM_EXPORT(lv_obj_set_style_outline_width),
ESP_ELFSYM_EXPORT(lv_obj_set_style_outline_pad),
ESP_ELFSYM_EXPORT(lv_obj_set_style_outline_opa),
// lv_font
ESP_ELFSYM_EXPORT(lv_font_get_default),
// lv_theme
Expand Down Expand Up @@ -563,6 +569,7 @@ const esp_elfsym main_symbols[] {
ESP_ELFSYM_EXPORT(lv_display_get_vertical_resolution),
ESP_ELFSYM_EXPORT(lv_display_get_physical_horizontal_resolution),
ESP_ELFSYM_EXPORT(lv_display_get_physical_vertical_resolution),
ESP_ELFSYM_EXPORT(lv_display_dpx),
// lv_pct
ESP_ELFSYM_EXPORT(lv_pct),
ESP_ELFSYM_EXPORT(lv_pct_to_px),
Expand All @@ -589,6 +596,7 @@ const esp_elfsym main_symbols[] {
ESP_ELFSYM_EXPORT(lv_indev_get_key),
ESP_ELFSYM_EXPORT(lv_indev_get_gesture_dir),
ESP_ELFSYM_EXPORT(lv_indev_get_state),
ESP_ELFSYM_EXPORT(lv_indev_active),
// lv_timer
ESP_ELFSYM_EXPORT(lv_timer_handler),
ESP_ELFSYM_EXPORT(lv_timer_handler_run_in_period),
Expand Down Expand Up @@ -617,6 +625,18 @@ const esp_elfsym main_symbols[] {
ESP_ELFSYM_EXPORT(lv_line_create),
ESP_ELFSYM_EXPORT(lv_line_set_points),
ESP_ELFSYM_EXPORT(lv_line_set_points_mutable),
// lv_group
ESP_ELFSYM_EXPORT(lv_group_remove_obj),
// lv_mem
ESP_ELFSYM_EXPORT(lv_free),
ESP_ELFSYM_EXPORT(lv_malloc),
// lv_draw
ESP_ELFSYM_EXPORT(lv_draw_task_get_draw_dsc),
ESP_ELFSYM_EXPORT(lv_draw_task_get_label_dsc),
ESP_ELFSYM_EXPORT(lv_draw_task_get_fill_dsc),
// lv_image
ESP_ELFSYM_EXPORT(lv_image_create),
ESP_ELFSYM_EXPORT(lv_image_set_src),
// stdio.h
ESP_ELFSYM_EXPORT(rename),
// dirent.h
Expand Down