ci: build examples with c++ compiler (#8261)

This commit is contained in:
André Costa
2025-05-19 16:53:41 +02:00
committed by GitHub
parent bdf1138afd
commit fc18bb0860
77 changed files with 455 additions and 278 deletions
+9 -7
View File
@@ -239,16 +239,18 @@ const LV_ATTRIBUTE_MEM_ALIGN LV_ATTRIBUTE_IMAGE_1F617 uint8_t emoji_F617_map[] =
};
const lv_image_dsc_t emoji_F617 = {
.header.cf = LV_COLOR_FORMAT_NATIVE,
.header.w = 72,
.header.h = 72,
.header = {
.cf = LV_COLOR_FORMAT_NATIVE,
.w = 72,
.h = 72,
#if LV_COLOR_DEPTH == 1 || LV_COLOR_DEPTH == 8
.header.stride = 72,
.stride = 72,
#elif LV_COLOR_DEPTH == 16
.header.stride = 144,
.stride = 144,
#elif LV_COLOR_DEPTH == 32
.header.stride = 288,
.stride = 288,
#endif
.data = emoji_F617_map,
},
.data_size = sizeof(emoji_F617_map),
.data = emoji_F617_map,
};