Hello
I had a code based on V8.4. How can I migrate code to V9.3? loads of functions has been omitted and it seems there no documentation on migration.
For example this was a working function on v8.4, however it doesnt work on v9.3, generate errors.
error: request for member 'part' in something not a structure or union
379 | if (dsc->part == LV_PART_MAIN)
| ^~
error: request for member 'line_dsc' in something not a structure or union
381 | if (dsc->line_dsc == NULL || dsc->p1 == NULL || dsc->p2 == NULL)
| ^~
error: request for member 'p1' in something not a structure or union
381 | if (dsc->line_dsc == NULL || dsc->p1 == NULL || dsc->p2 == NULL)
| ^~
error: request for member 'p2' in something not a structure or union
381 | if (dsc->line_dsc == NULL || dsc->p1 == NULL || dsc->p2 == NULL)
| ^~
error: request for member 'line_dsc' in something not a structure or union
384 | dsc->line_dsc->color = lv_color_mix(lv_color_hex(0x003366), lv_color_hex(0x808080), 127);
| ^~
error: request for member 'line_dsc' in something not a structure or union
385 | dsc->line_dsc->width = 1;
| ^~
error: request for member 'line_dsc' in something not a structure or union
386 | dsc->line_dsc->dash_gap = 3;
| ^~
error: request for member 'line_dsc' in something not a structure or union
387 | dsc->line_dsc->dash_width = 3;
| ^~