set partition table for OTA

This commit is contained in:
2025-04-24 14:46:26 -05:00
parent 219f1f1507
commit ee30fce074
4 changed files with 107 additions and 25 deletions
+77
View File
@@ -73,3 +73,80 @@ void wlv_obj_set_style_bg_color(lv_obj_t* obj, lv_color_t value, lv_style_select
}
}
void wlv_style_set_text_color() {
}
void wlv_style_set_text_align() {
}
void wlv_obj_align() {
}
void wlv_obj_set_size() {
}
void wlv_obj_add_style() {
}
void wlv_obj_set_style_text_align() {
}
void wlv_label_set_text() {
}
void wlv_scr_load() {
}
void wlv_scr_act() {
}
void wlv_style_set_bg_color() {
}
void wlv_style_set_bg_opa() {
}
void wlv_obj_set_width() {
}
void wlv_style_set_text_font() {
}
void wlv_label_create() {
}
void wlv_obj_del() {
}
void wlv_obj_center() {
}
void wlv_obj_remove_style() {
}
void wlv_obj_add_flag() {
}
void wlv_obj_clear_flag() {
}
+19 -22
View File
@@ -9,27 +9,24 @@ void reset_wlv_tables();
lv_obj_t* wlv_obj_create(lv_obj_t* parent);
void wlv_style_init(lv_style_t* style);
void wlv_obj_set_style_bg_color(struct _lv_obj_t * obj, lv_color_t value, lv_style_selector_t selector);
// lv_style_set_text_color
// lv_style_set_text_align
// lv_obj_align
// lv_obj_set_size
// lv_obj_add_style
// lv_obj_set_style_text_align
// lv_label_set_text
// lv_scr_load
// lv_scr_act
// lv_style_set_bg_color
// lv_style_set_bg_opa
// lv_style_set_text_align
// lv_obj_set_width
// lv_style_set_text_font
// lv_obj_add_style
// lv_style_set_text_color
// lv_label_create
// lv_obj_del
// lv_obj_center
// lv_obj_remove_style
// lv_obj_add_flag
// lv_obj_clear_flag
void wlv_style_set_text_color();
void wlv_style_set_text_align();
void wlv_obj_align();
void wlv_obj_set_size();
void wlv_obj_add_style();
void wlv_obj_set_style_text_align();
void wlv_label_set_text();
void wlv_scr_load();
void wlv_scr_act();
void wlv_style_set_bg_color();
void wlv_style_set_bg_opa();
void wlv_obj_set_width();
void wlv_style_set_text_font();
void wlv_label_create();
void wlv_obj_del();
void wlv_obj_center();
void wlv_obj_remove_style();
void wlv_obj_add_flag();
void wlv_obj_clear_flag();
#endif /* WLVGL_H */