1.linux下增加水印其它电池和月相图标

This commit is contained in:
payton 2023-07-05 10:31:41 +08:00
parent 8f8fe2ba5d
commit faf9a32c53
64 changed files with 102751 additions and 1588 deletions

View File

@ -919,7 +919,7 @@
#define DZOOM_FUNC ENABLE
#define HUNTING_MCU_I2C DISABLE
#define HUNTING_MCU_UART ENABLE
#define HUNTING_IR_LED_940 DISABLE
#define HUNTING_IR_LED_940 ENABLE
#define SF_BASE_VERSION "7MD4RCwD6T4"
#define HW_S530 1
#define DCF_DIR_NAME "MEDIA" /* 100MEDIA */
@ -940,6 +940,7 @@
#define SF_FW_FILE_PATH "A:\\SPHOST_REVEAL.BRN"
#define SF_IQ_TEST DISABLE
#define SF_IS_RELEASE DISABLE
#define PHOTO_ISP_STAMP DISABLE
#define SF_BASE_VERSION_FEA "R2.3"

View File

@ -25,6 +25,9 @@
//#include "UIWnd/SPORTCAM/UIInfo/DateTimeInfo.h"
#include "vf_gfx.h"
#if HUNTING_CAMERA_MCU == ENABLE
#include <sf_common.h>
#endif
#define THIS_DBGLVL 2 // 0=FATAL, 1=ERR, 2=WRN, 3=UNIT, 4=FUNC, 5=IND, 6=MSG, 7=VALUE, 8=USER
///////////////////////////////////////////////////////////////////////////////
#define __MODULE__ UIDateImprint
@ -614,16 +617,16 @@ void UiDateImprint_GetStampFont(UINT32 uiImageWidth, char **font)
DATE_IMPRINT_INFO *UiDateImprint_Event2Info(IMG_CAP_DATASTAMP_EVENT event)
{
DATE_IMPRINT_INFO *pInfo;
if (event == CAP_DS_EVENT_QV)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_QV];
else if (event == CAP_DS_EVENT_SCR)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_SCR];
else if (event == CAP_DS_EVENT_PRI)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_PRI];
DATE_IMPRINT_INFO *pInfo;
if (event == CAP_DS_EVENT_QV)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_QV];
else if (event == CAP_DS_EVENT_SCR)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_SCR];
else if (event == CAP_DS_EVENT_PRI)
pInfo = &pCtrl->info[DATE_IMPRINT_EVENT_PRI];
else
pInfo = NULL;
return pInfo;
pInfo = NULL;
return pInfo;
}
@ -1005,10 +1008,145 @@ void UiDateImprint_AttachLogo(DS_STAMP_INFOR *stampInfo, HD_VIDEO_FRAME* Img)
hd_common_mem_free(pa, va);
}
#if HUNTING_CAMERA_MCU == ENABLE
unsigned long DayCode[12]= {0,31,59,90,120,151,181,212,243,273,304,334};
unsigned long DayCode_Leap[12]= {0,31,60,91,121,152,182,213,244,274,305,335};
UINT8 sf_solar_to_Lunar(UINT16 Year,UINT8 Month, UINT8 Day)
{
float temp = 0,Tempnum = 0;
UINT8 tempn = 0,tempQ = 0,tempR = 0,LunarDay = 0;
UINT8 LunarDaytemp = 0;
if(Year>=2000)
Year=Year-2000;
if (Year<21)
{
UINT16 wMonthAdd[12] = {0,31,59,90,120,151,181,212,243,273,304,334};
UINT32 wNongliData[100] =
{
2635,333387,1701,1748,267701,694,2391,133423,1175,396438
,3402,3749,331177,1453,694,201326,2350,465197,3221,3402
,400202,2901,1386,267611,605,2349,137515,2709,464533,1738
,2901,330421,1242,2651,199255,1323,529706,3733,1706,398762
,2741,1206,267438,2647,1318,204070,3477,461653,1386,2413
,330077,1197,2637,268877,3365,531109,2900,2922,398042,2395
,1179,267415,2635,661067,1701,1748,398772,2742,2391,330031
,1175,1611,200010,3749,527717,1452,2742,332397,2350,3222
,268949,3402,3493,133973,1386,464219,605,2349,334123,2709
,2890,267946,2773,592565,1210,2651,395863,1323,2707,265877
};
UINT16 wCurYear;
UINT8 wCurMonth,wCurDay;
int nIsEnd,m,k,n,i;
UINT16 nTheDate,nBit;
//static int wCurYear,wCurMonth,wCurDay;
//static int nTheDate,nIsEnd,m,k,n,i,nBit;
wCurYear = Year+2000;
wCurMonth = Month;
wCurDay = Day;
nTheDate = (wCurYear - 1921) * 365 + (wCurYear - 1921) / 4 + wCurDay +
wMonthAdd[wCurMonth - 1] - 38;
if((!(wCurYear % 4)) && (wCurMonth > 2))
nTheDate = nTheDate + 1;
nIsEnd = 0;
m = 0;
while(nIsEnd != 1)
{
if(wNongliData[m] < 4095)
k = 11;
else
k = 12;
n = k;
while(n>=0)
{
nBit = wNongliData[m];
for(i=1; i<n+1; i++) //
nBit = nBit/2;
nBit = nBit % 2;
if (nTheDate <= (29 + nBit))
{
nIsEnd = 1;
break;
}
nTheDate = nTheDate - 29 - nBit;
n = n - 1;
}
if(nIsEnd)
break;
m = m + 1;
}
wCurYear = 1921 + m;
wCurMonth = k - n + 1;
wCurDay = nTheDate;
LunarDay=wCurDay ;
}// new code
else
{
if(Year<=100)
Year=Year+2000;
if (((Year% 400) == 0) || ((Year% 4) != 0))
{
temp=DayCode[Month-1]+Day;
}
else
{
temp=DayCode_Leap[Month-1]+Day;
}
// UI_PrintOSDNumber(temp, 2, 0, 4);
// UI_PrintOSDNumber(Year, 10, 0, 4);
tempQ=(Year-1977)/4;
tempR=(Year-1977)%4;
// UI_PrintOSDNumber(tempQ, 2, 2, 4);
// UI_PrintOSDNumber(tempR, 2, 3, 4);
Tempnum=14*tempQ+10.6*(tempR+1)+temp;
// UI_PrintOSDNumber(temp, 2, 4, 4);
tempn=Tempnum/29.5;
// UI_PrintOSDNumber(Tempnum, 2, 5, 4);
LunarDaytemp=(Tempnum-tempn*29.5)*10;
if(LunarDaytemp%10>=5)
LunarDay=(Tempnum-tempn*29.5)+1;
else if (LunarDaytemp%1000<10)
LunarDay=30;
else if (LunarDaytemp%1000>300)
LunarDay=1;
else
LunarDay=Tempnum-tempn*29.5;
// UI_PrintOSDNumber(LunarDay, 2, 6, 4);
}
return LunarDay;
}
#endif
ER UiDateImprint_CopyData(DS_STAMP_INFOR *stampInfo,HD_VIDEO_FRAME* Img, UINT32 copyEngine)
{
ER ret =E_OK;
VF_GFX_COPY param ={0};
INT32 year = 0, month = 0, day = 0;
UINT8 moonday = 0;
if (stampInfo->StampWeight == 255){
@ -1019,15 +1157,27 @@ ER UiDateImprint_CopyData(DS_STAMP_INFOR *stampInfo,HD_VIDEO_FRAME* Img, UINT32
vos_perf_mark(&t1);
year = DateTime_Get(DATETIME_YEAR);
month = DateTime_Get(DATETIME_MONTH);
day = DateTime_Get(DATETIME_DAY);
moonday = (sf_solar_to_Lunar(year, month, day)) - 1;
UINT8 batValue = 0;
batValue = sf_cardv_battery_level_get();
if(batValue < SF_BATT_LEVEL_1)
batValue = 1;
batValue -= 1;
UiDateImprint_DrawBG(stampInfo, Img);
UiDateImprint_AttachLogo(stampInfo, Img);
UiDateImprint_AttachICON(stampInfo, Img, LV_PLUGIN_IMG_ID_ICON_1020A, true, padding, &x_curr_ofs);
UiDateImprint_AttachICON(stampInfo, Img, LV_PLUGIN_IMG_ID_ICON_1021E, true, padding, &x_curr_ofs);
UiDateImprint_AttachICON(stampInfo, Img, (LV_PLUGIN_IMG_ID_ICON_10200_MOON + moonday), true, padding, &x_curr_ofs);
UiDateImprint_AttachICON(stampInfo, Img, (LV_PLUGIN_IMG_ID_ICON_10230_BATTERT + batValue), true, padding, &x_curr_ofs);
vos_perf_mark(&t2);
DBG_DUMP("*** dur = %lu ms ***\n", vos_perf_duration(t1, t2));
printf("[%s:%d]MOON ID=%d BATTERT ID:%d\n",__FUNCTION__,__LINE__,(LV_PLUGIN_IMG_ID_ICON_10200_MOON + moonday), (LV_PLUGIN_IMG_ID_ICON_10230_BATTERT + batValue));
param.src_img=stampInfo->Img;
param.src_region.x = 0;
param.src_region.y = 0;

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 128 px
* Bpp: 1
* Opts: --format lvgl --size 128 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_128_1bpp.c --no-compress
* Opts: --format lvgl --size 128 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_128_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 16 px
* Bpp: 1
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_16_1bpp.c --no-compress
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_16_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 32 px
* Bpp: 1
* Opts: --format lvgl --size 32 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_32_1bpp.c --no-compress
* Opts: --format lvgl --size 32 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_32_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 48 px
* Bpp: 1
* Opts: --format lvgl --size 48 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_48_1bpp.c --no-compress
* Opts: --format lvgl --size 48 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_48_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 64 px
* Bpp: 1
* Opts: --format lvgl --size 64 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_64_1bpp.c --no-compress
* Opts: --format lvgl --size 64 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_64_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 8 px
* Bpp: 1
* Opts: --format lvgl --size 8 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_8_1bpp.c --no-compress
* Opts: --format lvgl --size 8 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSans-Black.ttf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosans_black_8_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 16 px
* Bpp: 1
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKjp-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjkjp_black_16_1bpp.c --no-compress
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKjp-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjkjp_black_16_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 16 px
* Bpp: 1
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKsc-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjksc_black_16_1bpp.c --no-compress
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKsc-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjksc_black_16_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

View File

@ -1,7 +1,7 @@
/*******************************************************************************
* Size: 16 px
* Bpp: 1
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKtc-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/SY/PCBA/branch/s530/Linux/na51089_linux_sdk/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjktc_black_16_1bpp.c --no-compress
* Opts: --format lvgl --size 16 --bpp 1 --font Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/fonts/NotoSansCJKtc-Black.otf -r 0x20-0x3b,0x3d,0x3f-0x5f,0x61-0x7e,0xb0,0xba,0xc1,0xc3-0xc4,0xc9,0xce,0xd3,0xd6,0xdc,0xdf-0xe4,0xe7-0xea,0xec-0xed,0xf1-0xf3,0xf5-0xf6,0xfa,0xfc,0x105,0x118,0x410-0x414,0x417-0x418,0x41a,0x41c-0x424,0x426-0x428,0x42b,0x42d,0x42f-0x44f,0x2026,0x3001,0x3005,0x3042,0x3044,0x3046,0x3048,0x304a-0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305f-0x3061,0x3063,0x3066-0x306b,0x306d-0x3070,0x3079,0x307b,0x307e-0x3082,0x3088-0x308d,0x3092-0x3093,0x30a1-0x30a4,0x30a6-0x30ab,0x30ad,0x30af-0x30b0,0x30b3-0x30b5,0x30b7-0x30bd,0x30bf-0x30c1,0x30c3-0x30c4,0x30c6-0x30c9,0x30cb,0x30cd-0x30d1,0x30d3-0x30d7,0x30d9-0x30db,0x30dd-0x30e3,0x30e5,0x30e7,0x30e9-0x30ed,0x30ef,0x30f3,0x30fc,0x4e00,0x4e09-0x4e0b,0x4e0d,0x4e1d,0x4e25,0x4e2d,0x4e86,0x4eae,0x4eba,0x4ecb,0x4ece,0x4ed8,0x4ef6,0x4f11,0x4f18,0x4f20,0x4f48,0x4f4d-0x4f4e,0x4f53,0x4f5c,0x4f73,0x4f7f,0x4fa6,0x4fdd,0x4fe1,0x4fee,0x5019,0x503c,0x505c,0x5075,0x507f,0x50a8,0x50b3,0x50cf,0x511f,0x5132,0x5145,0x5149,0x5165,0x5167-0x5168,0x5173,0x5185,0x518d,0x5199,0x51c6,0x51cf,0x51e6,0x51fa,0x5206-0x5207,0x5217,0x521d,0x5220,0x5229-0x522b,0x5230,0x5236-0x5237,0x523b,0x524a,0x524d,0x526a,0x52a0,0x52a8,0x52d5,0x5305,0x5316,0x5355,0x5358,0x5361,0x5370,0x5377,0x5382,0x53bb,0x53d6,0x53d8,0x53e4,0x53ef,0x53f7,0x5408,0x540b,0x540d,0x5426,0x542b,0x547d,0x548c,0x54c1,0x5546,0x55ae,0x5668,0x56b4,0x56de,0x56fa,0x56fe,0x5716,0x5727-0x5728,0x573a,0x5747,0x578b,0x5834-0x5835,0x585e,0x58a8,0x58d3,0x58f0,0x5904,0x5907,0x5909,0x590d,0x591c,0x5927,0x5929,0x592e,0x5934,0x5939,0x593e,0x59cb,0x5a92,0x5b50,0x5b57-0x5b58,0x5b8c,0x5b9a,0x5bf8,0x5c01,0x5c06-0x5c07,0x5c0f,0x5c11,0x5c3a,0x5c3d,0x5c40,0x5de5,0x5df2,0x5e27,0x5e38,0x5e45,0x5e73,0x5e7b,0x5ea6,0x5ee0,0x5efa,0x5f00,0x5f0f,0x5f15,0x5f20,0x5f35,0x5f37,0x5f39-0x5f3a,0x5f48,0x5f52-0x5f53,0x5f55,0x5f69,0x5f71,0x5f85,0x5f8c,0x5f9e,0x5fa9-0x5faa,0x5fc6,0x5fd9,0x5feb,0x603b,0x6062,0x606f,0x61b6,0x6210,0x623b,0x6240,0x624b,0x6253,0x627e,0x629e,0x62a4,0x62bc,0x62c5,0x62cd,0x62d4,0x62e9,0x62ec,0x62f7,0x6301,0x6309,0x633f,0x636e,0x6372,0x63a5,0x63d0,0x63d2,0x6444,0x64ad-0x64ae,0x64c7,0x651d,0x652f,0x6539,0x653e,0x6548,0x6570,0x6574,0x6578,0x6587,0x6599,0x65ad,0x65b0,0x65b9,0x65cb,0x65e0,0x65e5,0x65f6,0x660e,0x662f,0x6642,0x666e-0x666f,0x6674,0x667a,0x66ab,0x66c7,0x66dd,0x66f4,0x6700,0x6709,0x671f,0x672a,0x672c,0x673a,0x675f,0x676f,0x6790,0x679a,0x679c,0x67d4,0x6807,0x683c,0x6848,0x6863,0x68c0,0x68d5,0x691c,0x69cb,0x6a19,0x6a21,0x6a5f,0x6a94,0x6aa2,0x6b21,0x6b62-0x6b64,0x6c34,0x6c92,0x6ca1,0x6cd5,0x6ce1,0x6d4b,0x6d4e,0x6d88,0x6e1b,0x6e2c,0x6e90,0x6e96,0x6ec5,0x6ee1,0x6eff,0x6fdf,0x706f,0x70b9,0x70c8,0x7121,0x7126,0x7167,0x71c8,0x7247-0x7248,0x7269,0x7387,0x73af,0x73fe,0x7406,0x74b0,0x751f,0x7528,0x7535,0x753b,0x7565,0x756b,0x767d,0x7684,0x76d2,0x76d6,0x76e1,0x76ee,0x76f8,0x771f,0x773c,0x77e5,0x7801,0x786c,0x786e,0x788c,0x789f,0x78ba,0x78bc,0x78c1,0x793a,0x79d2,0x79f0,0x79fb,0x7a0d,0x7a7a,0x7b11,0x7b49,0x7b52,0x7b7e,0x7b80,0x7b97,0x7c7b,0x7c89,0x7cfb,0x7d05,0x7d19,0x7d22,0x7d42,0x7d50,0x7d61,0x7d93,0x7d9a,0x7db2,0x7dda,0x7de0,0x7de8,0x7e2e,0x7e3d,0x7e41,0x7e7c,0x7e8c,0x7eb8,0x7ecf,0x7ed3,0x7edc,0x7ee7,0x7eed,0x7f16,0x7f29,0x7f6e,0x8017,0x8054,0x806f,0x8072,0x80cc,0x80fd,0x8138,0x81c9,0x81ea,0x81f4,0x8207,0x822c,0x8272,0x8282,0x82b1,0x82f1,0x8367,0x83dc,0x84cb,0x8655,0x865f,0x86cd,0x8861,0x8865,0x8868,0x88c1,0x88c5,0x88dc-0x88dd,0x88fd,0x8907,0x8910,0x8981,0x898b,0x898f,0x8996,0x89c1,0x89c4,0x89c6,0x89c8,0x89e3,0x8a00,0x8a08,0x8a0a,0x8a18,0x8a2d,0x8a70,0x8a8d,0x8a9e,0x8aa4,0x8abf,0x8acb,0x8b77,0x8b8a,0x8ba1,0x8ba4,0x8bb0,0x8bbe,0x8bc6,0x8bed,0x8bef,0x8bf7,0x8c03,0x8c61,0x8cc7,0x8cea,0x8d1d,0x8d28,0x8d44,0x8d77,0x8db3,0x8def,0x8ee2,0x8efd,0x8f03,0x8f09,0x8f1d,0x8f38,0x8f49,0x8f6c,0x8f7d,0x8f93,0x8fa8,0x8fd0,0x8fd4,0x8fde,0x9000-0x9001,0x9009,0x901a,0x901f,0x9023,0x904b,0x9069,0x9078,0x90e8,0x91c7,0x91cd,0x91cf,0x92b3,0x9304,0x932f,0x9332,0x9375,0x9396,0x93e1,0x9418,0x949f,0x94a8,0x9501,0x9510,0x9519,0x952e,0x955c,0x9580,0x9583,0x9589,0x958b,0x9593,0x95dc,0x95e8,0x95ea,0x95ed,0x95f4,0x9632,0x9634,0x9664,0x9670,0x9694,0x96d9,0x96f6,0x96fb,0x9707,0x9732,0x9759,0x9762,0x97f3,0x9801,0x9805,0x9810,0x982d,0x983b,0x9854,0x985e,0x9875,0x9884,0x9891,0x98a8,0x98ce,0x9971,0x9ad4,0x9ad8,0x9ed1,0x9ed8,0x9ede,0x20-0x7e -o Y:/home/payton/S530/code/application/source/cardv/SrcCode/UIWnd/LVGL_SPORTCAM/Resource/Fonts/notosanscjktc_black_16_1bpp.c --no-compress
******************************************************************************/
#ifdef LV_LVGL_H_INCLUDE_SIMPLE

File diff suppressed because one or more lines are too long

View File

@ -2425,13 +2425,173 @@
"images": [
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_1020a.BMP",
"name": "1020a"
"filename": "icons/ICON_10200_MOON.BMP",
"name": "ICON_10200_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_1021e.BMP",
"name": "1021e"
"filename": "icons/ICON_10201_MOON.BMP",
"name": "ICON_10201_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10202_MOON.BMP",
"name": "ICON_10202_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10203_MOON.BMP",
"name": "ICON_10203_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10204_MOON.BMP",
"name": "ICON_10204_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10205_MOON.BMP",
"name": "ICON_10205_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10206_MOON.BMP",
"name": "ICON_10206_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10207_MOON.BMP",
"name": "ICON_10207_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10208_MOON.BMP",
"name": "ICON_10208_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10209_MOON.BMP",
"name": "ICON_10209_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10210_MOON.BMP",
"name": "ICON_10210_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10211_MOON.BMP",
"name": "ICON_10211_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10212_MOON.BMP",
"name": "ICON_10212_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10213_MOON.BMP",
"name": "ICON_10213_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10214_MOON.BMP",
"name": "ICON_10214_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10215_MOON.BMP",
"name": "ICON_10215_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10216_MOON.BMP",
"name": "ICON_10216_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10217_MOON.BMP",
"name": "ICON_10217_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10218_MOON.BMP",
"name": "ICON_10218_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10219_MOON.BMP",
"name": "ICON_10219_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10220_MOON.BMP",
"name": "ICON_10220_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10221_MOON.BMP",
"name": "ICON_10221_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10222_MOON.BMP",
"name": "ICON_10222_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10223_MOON.BMP",
"name": "ICON_10223_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10224_MOON.BMP",
"name": "ICON_10224_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10225_MOON.BMP",
"name": "ICON_10225_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10226_MOON.BMP",
"name": "ICON_10226_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10227_MOON.BMP",
"name": "ICON_10227_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10228_MOON.BMP",
"name": "ICON_10228_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10229_MOON.BMP",
"name": "ICON_10229_MOON"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10230_BATTERT.BMP",
"name": "ICON_10230_BATTERT"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10231_BATTERT.BMP",
"name": "ICON_10231_BATTERT"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10232_BATTERT.BMP",
"name": "ICON_10232_BATTERT"
},
{
"colorFormat": "Indexed 256 in RGB332",
"filename": "icons/ICON_10233_BATTERT.BMP",
"name": "ICON_10233_BATTERT"
},
{
"colorFormat": "Indexed 256 in RGB332",

View File

@ -37,8 +37,40 @@ extern lv_plugin_string_t lv_plugin_RU_string_table[];
lv_plugin_img_t lv_plugin_UIFlowLVGL_img_table[] =
{
{ NULL },
{ &icon_1020a },
{ &icon_1021e },
{ &icon_10200_moon },
{ &icon_10201_moon },
{ &icon_10202_moon },
{ &icon_10203_moon },
{ &icon_10204_moon },
{ &icon_10205_moon },
{ &icon_10206_moon },
{ &icon_10207_moon },
{ &icon_10208_moon },
{ &icon_10209_moon },
{ &icon_10210_moon },
{ &icon_10211_moon },
{ &icon_10212_moon },
{ &icon_10213_moon },
{ &icon_10214_moon },
{ &icon_10215_moon },
{ &icon_10216_moon },
{ &icon_10217_moon },
{ &icon_10218_moon },
{ &icon_10219_moon },
{ &icon_10220_moon },
{ &icon_10221_moon },
{ &icon_10222_moon },
{ &icon_10223_moon },
{ &icon_10224_moon },
{ &icon_10225_moon },
{ &icon_10226_moon },
{ &icon_10227_moon },
{ &icon_10228_moon },
{ &icon_10229_moon },
{ &icon_10230_battert },
{ &icon_10231_battert },
{ &icon_10232_battert },
{ &icon_10233_battert },
{ &icon_act_push_btn },
{ &icon_act_release_btn },
{ &icon_adas_cal },
@ -1126,4 +1158,4 @@ void UIFlowLVGL(){
UIFlowWifiLinkOK = UIFlowWifiLinkOK_create();
UIFlowWifiWait = UIFlowWifiWait_create();
}
}

View File

@ -74,8 +74,40 @@ void btn_ref_event_callback(lv_obj_t* obj, lv_event_t event);
void btn_wifioff_event_callback(lv_obj_t* obj, lv_event_t event);
void btn_sel_event_callback(lv_obj_t* obj, lv_event_t event);
LV_IMG_DECLARE(icon_1020a);
LV_IMG_DECLARE(icon_1021e);
LV_IMG_DECLARE(icon_10200_moon);
LV_IMG_DECLARE(icon_10201_moon);
LV_IMG_DECLARE(icon_10202_moon);
LV_IMG_DECLARE(icon_10203_moon);
LV_IMG_DECLARE(icon_10204_moon);
LV_IMG_DECLARE(icon_10205_moon);
LV_IMG_DECLARE(icon_10206_moon);
LV_IMG_DECLARE(icon_10207_moon);
LV_IMG_DECLARE(icon_10208_moon);
LV_IMG_DECLARE(icon_10209_moon);
LV_IMG_DECLARE(icon_10210_moon);
LV_IMG_DECLARE(icon_10211_moon);
LV_IMG_DECLARE(icon_10212_moon);
LV_IMG_DECLARE(icon_10213_moon);
LV_IMG_DECLARE(icon_10214_moon);
LV_IMG_DECLARE(icon_10215_moon);
LV_IMG_DECLARE(icon_10216_moon);
LV_IMG_DECLARE(icon_10217_moon);
LV_IMG_DECLARE(icon_10218_moon);
LV_IMG_DECLARE(icon_10219_moon);
LV_IMG_DECLARE(icon_10220_moon);
LV_IMG_DECLARE(icon_10221_moon);
LV_IMG_DECLARE(icon_10222_moon);
LV_IMG_DECLARE(icon_10223_moon);
LV_IMG_DECLARE(icon_10224_moon);
LV_IMG_DECLARE(icon_10225_moon);
LV_IMG_DECLARE(icon_10226_moon);
LV_IMG_DECLARE(icon_10227_moon);
LV_IMG_DECLARE(icon_10228_moon);
LV_IMG_DECLARE(icon_10229_moon);
LV_IMG_DECLARE(icon_10230_battert);
LV_IMG_DECLARE(icon_10231_battert);
LV_IMG_DECLARE(icon_10232_battert);
LV_IMG_DECLARE(icon_10233_battert);
LV_IMG_DECLARE(icon_act_push_btn);
LV_IMG_DECLARE(icon_act_release_btn);
LV_IMG_DECLARE(icon_adas_cal);
@ -430,362 +462,394 @@ LV_IMG_DECLARE(icon_wifi_on_m);
LV_IMG_DECLARE(icon_yes);
LV_IMG_DECLARE(icon_yes_m);
#define LV_PLUGIN_IMG_ID_ICON_1020A 1
#define LV_PLUGIN_IMG_ID_ICON_1021E 2
#define LV_PLUGIN_IMG_ID_ICON_ACT_PUSH_BTN 3
#define LV_PLUGIN_IMG_ID_ICON_ACT_RELEASE_BTN 4
#define LV_PLUGIN_IMG_ID_ICON_ADAS_CAL 5
#define LV_PLUGIN_IMG_ID_ICON_ADAS_CAL_M 6
#define LV_PLUGIN_IMG_ID_ICON_ADAS_OFF 7
#define LV_PLUGIN_IMG_ID_ICON_ADAS_OFF_M 8
#define LV_PLUGIN_IMG_ID_ICON_ADAS_ON 9
#define LV_PLUGIN_IMG_ID_ICON_ADAS_ON_M 10
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN 11
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_10MIN 12
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_3MIN 13
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_5MIN 14
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_M 15
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_OFF 16
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT 17
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_HIGH 18
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_LOW 19
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_M 20
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_MID 21
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_OFF 22
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_CHARGE 23
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_EMPTY 24
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_FULL 25
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_LOW 26
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_MED 27
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_TYPE 28
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_ZERO 29
#define LV_PLUGIN_IMG_ID_ICON_BSD_OFF 30
#define LV_PLUGIN_IMG_ID_ICON_BSD_OFF_M 31
#define LV_PLUGIN_IMG_ID_ICON_BSD_ON 32
#define LV_PLUGIN_IMG_ID_ICON_BSD_ON_M 33
#define LV_PLUGIN_IMG_ID_ICON_BTN_EMBOSS 34
#define LV_PLUGIN_IMG_ID_ICON_BUST 35
#define LV_PLUGIN_IMG_ID_ICON_BUST_3SHOT 36
#define LV_PLUGIN_IMG_ID_ICON_BUST_5SHOT 37
#define LV_PLUGIN_IMG_ID_ICON_BUST_CONTINUE 38
#define LV_PLUGIN_IMG_ID_ICON_BUST_M 39
#define LV_PLUGIN_IMG_ID_ICON_BUST_OFF 40
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_OFF 41
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_ON 42
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_ON_M 43
#define LV_PLUGIN_IMG_ID_ICON_CANCEL 44
#define LV_PLUGIN_IMG_ID_ICON_CANCEL_M 45
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTED 46
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTED_M 47
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTING 48
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTING_M 49
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_DOWNLOAD1 50
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_DOWNLOAD2 51
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_FAIL 52
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_OFF 53
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_OFF_M 54
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_ON 55
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_ON_M 56
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_UPLOAD1 57
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_UPLOAD2 58
#define LV_PLUGIN_IMG_ID_ICON_COLOR 59
#define LV_PLUGIN_IMG_ID_ICON_COPY_FROM_CARD 60
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC 61
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_10MIN 62
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_15MIN 63
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_1MIN 64
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_2MIN 65
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_3MIN 66
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_5MIN 67
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_M 68
#define LV_PLUGIN_IMG_ID_ICON_DATETIME_SETUP 69
#define LV_PLUGIN_IMG_ID_ICON_DATETIME_SETUP_M 70
#define LV_PLUGIN_IMG_ID_ICON_DATE_PRINT 71
#define LV_PLUGIN_IMG_ID_ICON_DATE_PRINT_M 72
#define LV_PLUGIN_IMG_ID_ICON_DATE_STAMPING 73
#define LV_PLUGIN_IMG_ID_ICON_DATE_TIME 74
#define LV_PLUGIN_IMG_ID_ICON_DDD_OFF 75
#define LV_PLUGIN_IMG_ID_ICON_DDD_OFF_M 76
#define LV_PLUGIN_IMG_ID_ICON_DDD_ON 77
#define LV_PLUGIN_IMG_ID_ICON_DDD_ON_M 78
#define LV_PLUGIN_IMG_ID_ICON_DEFAULT 79
#define LV_PLUGIN_IMG_ID_ICON_DEFAULT_M 80
#define LV_PLUGIN_IMG_ID_ICON_DELETE 81
#define LV_PLUGIN_IMG_ID_ICON_DELETE_ALL 82
#define LV_PLUGIN_IMG_ID_ICON_DELETE_CURRENT 83
#define LV_PLUGIN_IMG_ID_ICON_DELETE_M 84
#define LV_PLUGIN_IMG_ID_ICON_DIR_DOWN 85
#define LV_PLUGIN_IMG_ID_ICON_DIR_LEFT 86
#define LV_PLUGIN_IMG_ID_ICON_DIR_RIGHT 87
#define LV_PLUGIN_IMG_ID_ICON_DIR_UP 88
#define LV_PLUGIN_IMG_ID_ICON_DPOF 89
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BEHIND 90
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BOTH 91
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BOTH_M 92
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_FRONT 93
#define LV_PLUGIN_IMG_ID_ICON_EV 94
#define LV_PLUGIN_IMG_ID_ICON_EV_M 95
#define LV_PLUGIN_IMG_ID_ICON_EV_M0P3 96
#define LV_PLUGIN_IMG_ID_ICON_EV_M0P6 97
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P0 98
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P3 99
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P6 100
#define LV_PLUGIN_IMG_ID_ICON_EV_M2P0 101
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P0 102
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P3 103
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P6 104
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P0 105
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P3 106
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P6 107
#define LV_PLUGIN_IMG_ID_ICON_EV_P2P0 108
#define LV_PLUGIN_IMG_ID_ICON_FACE_OFF 109
#define LV_PLUGIN_IMG_ID_ICON_FACE_ON 110
#define LV_PLUGIN_IMG_ID_ICON_FACE_ON_M 111
#define LV_PLUGIN_IMG_ID_ICON_FB_LEFT 112
#define LV_PLUGIN_IMG_ID_ICON_FCW_FAR_ALERT 113
#define LV_PLUGIN_IMG_ID_ICON_FCW_NEAR_ALERT 114
#define LV_PLUGIN_IMG_ID_ICON_FCW_OFF 115
#define LV_PLUGIN_IMG_ID_ICON_FCW_OFF_M 116
#define LV_PLUGIN_IMG_ID_ICON_FCW_ON 117
#define LV_PLUGIN_IMG_ID_ICON_FCW_ON_M 118
#define LV_PLUGIN_IMG_ID_ICON_FF_RIGHT 119
#define LV_PLUGIN_IMG_ID_ICON_FILE_VIDEO 120
#define LV_PLUGIN_IMG_ID_ICON_FIRMWARE_UPDATE 121
#define LV_PLUGIN_IMG_ID_ICON_FIRMWARE_UPDATE_M 122
#define LV_PLUGIN_IMG_ID_ICON_FLASH_AUTO 123
#define LV_PLUGIN_IMG_ID_ICON_FLASH_OFF 124
#define LV_PLUGIN_IMG_ID_ICON_FLASH_ON 125
#define LV_PLUGIN_IMG_ID_ICON_FLASH_ON_M 126
#define LV_PLUGIN_IMG_ID_ICON_FLASH_REC 127
#define LV_PLUGIN_IMG_ID_ICON_FLASH_REC_M 128
#define LV_PLUGIN_IMG_ID_ICON_FLASH_RED_EYE 129
#define LV_PLUGIN_IMG_ID_ICON_FLICK_50HZ 130
#define LV_PLUGIN_IMG_ID_ICON_FLICK_60HZ 131
#define LV_PLUGIN_IMG_ID_ICON_FORMAT 132
#define LV_PLUGIN_IMG_ID_ICON_FORMAT_M 133
#define LV_PLUGIN_IMG_ID_ICON_GOLF_REC 134
#define LV_PLUGIN_IMG_ID_ICON_GOLF_REC_M 135
#define LV_PLUGIN_IMG_ID_ICON_GPS_OFF 136
#define LV_PLUGIN_IMG_ID_ICON_GPS_ON 137
#define LV_PLUGIN_IMG_ID_ICON_GPS_ON_M 138
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR 139
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_HIGH 140
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_LOW 141
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_M 142
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_MID 143
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_OFF 144
#define LV_PLUGIN_IMG_ID_ICON_HDR 145
#define LV_PLUGIN_IMG_ID_ICON_HDR_M 146
#define LV_PLUGIN_IMG_ID_ICON_HDR_OFF 147
#define LV_PLUGIN_IMG_ID_ICON_HELP 148
#define LV_PLUGIN_IMG_ID_ICON_HELP_M 149
#define LV_PLUGIN_IMG_ID_ICON_HZ 150
#define LV_PLUGIN_IMG_ID_ICON_HZ_50 151
#define LV_PLUGIN_IMG_ID_ICON_HZ_60 152
#define LV_PLUGIN_IMG_ID_ICON_HZ_M 153
#define LV_PLUGIN_IMG_ID_ICON_INFO 154
#define LV_PLUGIN_IMG_ID_ICON_INFO_M 155
#define LV_PLUGIN_IMG_ID_ICON_INTERNAL_FLASH 156
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_AUTO 157
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_OFF 158
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_ON_M 159
#define LV_PLUGIN_IMG_ID_ICON_ISO 160
#define LV_PLUGIN_IMG_ID_ICON_ISO_100 161
#define LV_PLUGIN_IMG_ID_ICON_ISO_1600 162
#define LV_PLUGIN_IMG_ID_ICON_ISO_200 163
#define LV_PLUGIN_IMG_ID_ICON_ISO_400 164
#define LV_PLUGIN_IMG_ID_ICON_ISO_800 165
#define LV_PLUGIN_IMG_ID_ICON_ISO_AUTO 166
#define LV_PLUGIN_IMG_ID_ICON_ISO_M 167
#define LV_PLUGIN_IMG_ID_ICON_LANDSCAPE 168
#define LV_PLUGIN_IMG_ID_ICON_LANGUAGE 169
#define LV_PLUGIN_IMG_ID_ICON_LANGUAGE_M 170
#define LV_PLUGIN_IMG_ID_ICON_LDWS_LEFT_ALERT 171
#define LV_PLUGIN_IMG_ID_ICON_LDWS_OFF 172
#define LV_PLUGIN_IMG_ID_ICON_LDWS_OFF_M 173
#define LV_PLUGIN_IMG_ID_ICON_LDWS_ON 174
#define LV_PLUGIN_IMG_ID_ICON_LDWS_ON_M 175
#define LV_PLUGIN_IMG_ID_ICON_LDWS_RIGHT_ALERT 176
#define LV_PLUGIN_IMG_ID_ICON_LOCK 177
#define LV_PLUGIN_IMG_ID_ICON_LOCK_ALL 178
#define LV_PLUGIN_IMG_ID_ICON_LOCK_ALL_M 179
#define LV_PLUGIN_IMG_ID_ICON_LOCK_CURRENT 180
#define LV_PLUGIN_IMG_ID_ICON_LOCK_CURRENT_M 181
#define LV_PLUGIN_IMG_ID_ICON_LOCK_M 182
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOCK 183
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOCK_M 184
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOKC_ALL 185
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOKC_ALL_M 186
#define LV_PLUGIN_IMG_ID_ICON_LPR_OFF 187
#define LV_PLUGIN_IMG_ID_ICON_LPR_OFF_M 188
#define LV_PLUGIN_IMG_ID_ICON_LPR_ON 189
#define LV_PLUGIN_IMG_ID_ICON_LPR_ON_M 190
#define LV_PLUGIN_IMG_ID_ICON_MENU_MODECHANG 191
#define LV_PLUGIN_IMG_ID_ICON_MENU_MODECHANG_M 192
#define LV_PLUGIN_IMG_ID_ICON_MENU_PRINT_OFF 193
#define LV_PLUGIN_IMG_ID_ICON_MENU_RETURN 194
#define LV_PLUGIN_IMG_ID_ICON_MENU_RETURN_M 195
#define LV_PLUGIN_IMG_ID_ICON_MENU_SETUP_ON_M 196
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR 197
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR_M 198
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR_OFF 199
#define LV_PLUGIN_IMG_ID_ICON_METERING 200
#define LV_PLUGIN_IMG_ID_ICON_METERING_M 201
#define LV_PLUGIN_IMG_ID_ICON_MODE_CAPTURE 202
#define LV_PLUGIN_IMG_ID_ICON_MODE_CAPTURE_M 203
#define LV_PLUGIN_IMG_ID_ICON_MODE_PLAYBACK 204
#define LV_PLUGIN_IMG_ID_ICON_MODE_PLAYBACK_M 205
#define LV_PLUGIN_IMG_ID_ICON_MODE_VIDEO 206
#define LV_PLUGIN_IMG_ID_ICON_MODE_VIDEO_M 207
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_OFF 208
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_ON 209
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_ON_M 210
#define LV_PLUGIN_IMG_ID_ICON_NO 211
#define LV_PLUGIN_IMG_ID_ICON_NO_M 212
#define LV_PLUGIN_IMG_ID_ICON_OK 213
#define LV_PLUGIN_IMG_ID_ICON_OK2 214
#define LV_PLUGIN_IMG_ID_ICON_OK_M 215
#define LV_PLUGIN_IMG_ID_ICON_OK_M_2 216
#define LV_PLUGIN_IMG_ID_ICON_PD_OFF 217
#define LV_PLUGIN_IMG_ID_ICON_PD_OFF_M 218
#define LV_PLUGIN_IMG_ID_ICON_PD_ON 219
#define LV_PLUGIN_IMG_ID_ICON_PD_ON_M 220
#define LV_PLUGIN_IMG_ID_ICON_PICTBRIDGE_S 221
#define LV_PLUGIN_IMG_ID_ICON_PIM_OFF 222
#define LV_PLUGIN_IMG_ID_ICON_PIM_OFF_M 223
#define LV_PLUGIN_IMG_ID_ICON_PIM_ON 224
#define LV_PLUGIN_IMG_ID_ICON_PIM_ON_M 225
#define LV_PLUGIN_IMG_ID_ICON_PLAY_BACKWARD 226
#define LV_PLUGIN_IMG_ID_ICON_PLAY_FORWARD 227
#define LV_PLUGIN_IMG_ID_ICON_PLAY_PAUSE 228
#define LV_PLUGIN_IMG_ID_ICON_PLAY_PLAY 229
#define LV_PLUGIN_IMG_ID_ICON_PLAY_STEP 230
#define LV_PLUGIN_IMG_ID_ICON_PLAY_STOP 231
#define LV_PLUGIN_IMG_ID_ICON_POWER_OFF 232
#define LV_PLUGIN_IMG_ID_ICON_POWER_OFF_M 233
#define LV_PLUGIN_IMG_ID_ICON_PRINT 234
#define LV_PLUGIN_IMG_ID_ICON_PROTECT 235
#define LV_PLUGIN_IMG_ID_ICON_PROTECT_M 236
#define LV_PLUGIN_IMG_ID_ICON_QUALITY 237
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_BASIC 238
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_FINE 239
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_M 240
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_NORMAL 241
#define LV_PLUGIN_IMG_ID_ICON_QUICK_REVIEW 242
#define LV_PLUGIN_IMG_ID_ICON_QUICK_REVIEW_M 243
#define LV_PLUGIN_IMG_ID_ICON_REC_ELLIPSE 244
#define LV_PLUGIN_IMG_ID_ICON_REC_RECOVERY 245
#define LV_PLUGIN_IMG_ID_ICON_REC_TRANSPAENT 246
#define LV_PLUGIN_IMG_ID_ICON_RESOLUTION 247
#define LV_PLUGIN_IMG_ID_ICON_RESOLUTION_M 248
#define LV_PLUGIN_IMG_ID_ICON_ROTATE 249
#define LV_PLUGIN_IMG_ID_ICON_RSC_OFF 250
#define LV_PLUGIN_IMG_ID_ICON_RSC_ON 251
#define LV_PLUGIN_IMG_ID_ICON_RSC_ON_M 252
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE 253
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_AUTO 254
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_LANDSCPE 255
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_M 256
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_PORTRIAL 257
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER 258
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_10MIN 259
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_3MIN 260
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_5MIN 261
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_M 262
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_OFF 263
#define LV_PLUGIN_IMG_ID_ICON_SD_CARD 264
#define LV_PLUGIN_IMG_ID_ICON_SD_LOCK 265
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER 266
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_10SEC 267
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_2SEC 268
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_5SEC 269
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_M 270
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_OFF 271
#define LV_PLUGIN_IMG_ID_ICON_SEQUENCE_NO 272
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_OFF 273
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_ON 274
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_ON_M 275
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS 276
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_HIGH 277
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_LOW 278
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_M 279
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_MED 280
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_0STEP 281
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_0STEP_M 282
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_1STEP 283
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_1STEP_M 284
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_2STEP 285
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_2STEP_M 286
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW 287
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_2SEC 288
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_5SEC 289
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_8SEC 290
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_M 291
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_OFF 292
#define LV_PLUGIN_IMG_ID_ICON_SMILE 293
#define LV_PLUGIN_IMG_ID_ICON_SMILE_M 294
#define LV_PLUGIN_IMG_ID_ICON_SNG_ALERT 295
#define LV_PLUGIN_IMG_ID_ICON_SNG_OFF 296
#define LV_PLUGIN_IMG_ID_ICON_SNG_OFF_M 297
#define LV_PLUGIN_IMG_ID_ICON_SNG_ON 298
#define LV_PLUGIN_IMG_ID_ICON_SNG_ON_M 299
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_OFF 300
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_ON 301
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_ON_M 302
#define LV_PLUGIN_IMG_ID_ICON_SPEAKER 303
#define LV_PLUGIN_IMG_ID_ICON_SYS_CAL 304
#define LV_PLUGIN_IMG_ID_ICON_SYS_CAL_M 305
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_OFF 306
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_ON 307
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_ON_M 308
#define LV_PLUGIN_IMG_ID_ICON_TSR_OFF 309
#define LV_PLUGIN_IMG_ID_ICON_TSR_OFF_M 310
#define LV_PLUGIN_IMG_ID_ICON_TSR_ON 311
#define LV_PLUGIN_IMG_ID_ICON_TSR_ON_M 312
#define LV_PLUGIN_IMG_ID_ICON_TV_MODE 313
#define LV_PLUGIN_IMG_ID_ICON_TV_MODE_M 314
#define LV_PLUGIN_IMG_ID_ICON_TV_NTSC 315
#define LV_PLUGIN_IMG_ID_ICON_TV_PAL 316
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_AUTO 317
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_AUTO_M 318
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_MANUAL 319
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_MANUAL_M 320
#define LV_PLUGIN_IMG_ID_ICON_USB_MSDC 321
#define LV_PLUGIN_IMG_ID_ICON_USB_OFF 322
#define LV_PLUGIN_IMG_ID_ICON_USB_ON 323
#define LV_PLUGIN_IMG_ID_ICON_USB_ON_M 324
#define LV_PLUGIN_IMG_ID_ICON_USB_UVC 325
#define LV_PLUGIN_IMG_ID_ICON_VERSION 326
#define LV_PLUGIN_IMG_ID_ICON_VERSION_M 327
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_OFF 328
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_ON 329
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_ON_M 330
#define LV_PLUGIN_IMG_ID_ICON_VOICE 331
#define LV_PLUGIN_IMG_ID_ICON_VOICE_M 332
#define LV_PLUGIN_IMG_ID_ICON_VOL_0 333
#define LV_PLUGIN_IMG_ID_ICON_VOL_1 334
#define LV_PLUGIN_IMG_ID_ICON_VOL_2 335
#define LV_PLUGIN_IMG_ID_ICON_WB 336
#define LV_PLUGIN_IMG_ID_ICON_WB_AUTO 337
#define LV_PLUGIN_IMG_ID_ICON_WB_CLOUDY 338
#define LV_PLUGIN_IMG_ID_ICON_WB_DAYLIGHT 339
#define LV_PLUGIN_IMG_ID_ICON_WB_FLUORESCENT 340
#define LV_PLUGIN_IMG_ID_ICON_WB_M 341
#define LV_PLUGIN_IMG_ID_ICON_WB_TUNGSTEN 342
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTED 343
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING1 344
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING2 345
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING3 346
#define LV_PLUGIN_IMG_ID_ICON_WIFI_DOT_CONNECTING_OFF 347
#define LV_PLUGIN_IMG_ID_ICON_WIFI_DOT_CONNECTING_ON 348
#define LV_PLUGIN_IMG_ID_ICON_WIFI_FAIL 349
#define LV_PLUGIN_IMG_ID_ICON_WIFI_OFF 350
#define LV_PLUGIN_IMG_ID_ICON_WIFI_OFF_M 351
#define LV_PLUGIN_IMG_ID_ICON_WIFI_ON 352
#define LV_PLUGIN_IMG_ID_ICON_WIFI_ON_M 353
#define LV_PLUGIN_IMG_ID_ICON_YES 354
#define LV_PLUGIN_IMG_ID_ICON_YES_M 355
#define LV_PLUGIN_IMG_TABLE_SIZE 356
#define LV_PLUGIN_IMG_ID_ICON_10200_MOON 1
#define LV_PLUGIN_IMG_ID_ICON_10201_MOON 2
#define LV_PLUGIN_IMG_ID_ICON_10202_MOON 3
#define LV_PLUGIN_IMG_ID_ICON_10203_MOON 4
#define LV_PLUGIN_IMG_ID_ICON_10204_MOON 5
#define LV_PLUGIN_IMG_ID_ICON_10205_MOON 6
#define LV_PLUGIN_IMG_ID_ICON_10206_MOON 7
#define LV_PLUGIN_IMG_ID_ICON_10207_MOON 8
#define LV_PLUGIN_IMG_ID_ICON_10208_MOON 9
#define LV_PLUGIN_IMG_ID_ICON_10209_MOON 10
#define LV_PLUGIN_IMG_ID_ICON_10210_MOON 11
#define LV_PLUGIN_IMG_ID_ICON_10211_MOON 12
#define LV_PLUGIN_IMG_ID_ICON_10212_MOON 13
#define LV_PLUGIN_IMG_ID_ICON_10213_MOON 14
#define LV_PLUGIN_IMG_ID_ICON_10214_MOON 15
#define LV_PLUGIN_IMG_ID_ICON_10215_MOON 16
#define LV_PLUGIN_IMG_ID_ICON_10216_MOON 17
#define LV_PLUGIN_IMG_ID_ICON_10217_MOON 18
#define LV_PLUGIN_IMG_ID_ICON_10218_MOON 19
#define LV_PLUGIN_IMG_ID_ICON_10219_MOON 20
#define LV_PLUGIN_IMG_ID_ICON_10220_MOON 21
#define LV_PLUGIN_IMG_ID_ICON_10221_MOON 22
#define LV_PLUGIN_IMG_ID_ICON_10222_MOON 23
#define LV_PLUGIN_IMG_ID_ICON_10223_MOON 24
#define LV_PLUGIN_IMG_ID_ICON_10224_MOON 25
#define LV_PLUGIN_IMG_ID_ICON_10225_MOON 26
#define LV_PLUGIN_IMG_ID_ICON_10226_MOON 27
#define LV_PLUGIN_IMG_ID_ICON_10227_MOON 28
#define LV_PLUGIN_IMG_ID_ICON_10228_MOON 29
#define LV_PLUGIN_IMG_ID_ICON_10229_MOON 30
#define LV_PLUGIN_IMG_ID_ICON_10230_BATTERT 31
#define LV_PLUGIN_IMG_ID_ICON_10231_BATTERT 32
#define LV_PLUGIN_IMG_ID_ICON_10232_BATTERT 33
#define LV_PLUGIN_IMG_ID_ICON_10233_BATTERT 34
#define LV_PLUGIN_IMG_ID_ICON_ACT_PUSH_BTN 35
#define LV_PLUGIN_IMG_ID_ICON_ACT_RELEASE_BTN 36
#define LV_PLUGIN_IMG_ID_ICON_ADAS_CAL 37
#define LV_PLUGIN_IMG_ID_ICON_ADAS_CAL_M 38
#define LV_PLUGIN_IMG_ID_ICON_ADAS_OFF 39
#define LV_PLUGIN_IMG_ID_ICON_ADAS_OFF_M 40
#define LV_PLUGIN_IMG_ID_ICON_ADAS_ON 41
#define LV_PLUGIN_IMG_ID_ICON_ADAS_ON_M 42
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN 43
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_10MIN 44
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_3MIN 45
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_5MIN 46
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_M 47
#define LV_PLUGIN_IMG_ID_ICON_AUTOSHUTDOWN_OFF 48
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT 49
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_HIGH 50
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_LOW 51
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_M 52
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_MID 53
#define LV_PLUGIN_IMG_ID_ICON_BACKLIGHT_OFF 54
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_CHARGE 55
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_EMPTY 56
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_FULL 57
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_LOW 58
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_MED 59
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_TYPE 60
#define LV_PLUGIN_IMG_ID_ICON_BATTERY_ZERO 61
#define LV_PLUGIN_IMG_ID_ICON_BSD_OFF 62
#define LV_PLUGIN_IMG_ID_ICON_BSD_OFF_M 63
#define LV_PLUGIN_IMG_ID_ICON_BSD_ON 64
#define LV_PLUGIN_IMG_ID_ICON_BSD_ON_M 65
#define LV_PLUGIN_IMG_ID_ICON_BTN_EMBOSS 66
#define LV_PLUGIN_IMG_ID_ICON_BUST 67
#define LV_PLUGIN_IMG_ID_ICON_BUST_3SHOT 68
#define LV_PLUGIN_IMG_ID_ICON_BUST_5SHOT 69
#define LV_PLUGIN_IMG_ID_ICON_BUST_CONTINUE 70
#define LV_PLUGIN_IMG_ID_ICON_BUST_M 71
#define LV_PLUGIN_IMG_ID_ICON_BUST_OFF 72
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_OFF 73
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_ON 74
#define LV_PLUGIN_IMG_ID_ICON_CAM_PTZ_ON_M 75
#define LV_PLUGIN_IMG_ID_ICON_CANCEL 76
#define LV_PLUGIN_IMG_ID_ICON_CANCEL_M 77
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTED 78
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTED_M 79
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTING 80
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_CONNECTING_M 81
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_DOWNLOAD1 82
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_DOWNLOAD2 83
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_FAIL 84
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_OFF 85
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_OFF_M 86
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_ON 87
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_ON_M 88
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_UPLOAD1 89
#define LV_PLUGIN_IMG_ID_ICON_CLOUD_UPLOAD2 90
#define LV_PLUGIN_IMG_ID_ICON_COLOR 91
#define LV_PLUGIN_IMG_ID_ICON_COPY_FROM_CARD 92
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC 93
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_10MIN 94
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_15MIN 95
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_1MIN 96
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_2MIN 97
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_3MIN 98
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_5MIN 99
#define LV_PLUGIN_IMG_ID_ICON_CYCLIC_REC_M 100
#define LV_PLUGIN_IMG_ID_ICON_DATETIME_SETUP 101
#define LV_PLUGIN_IMG_ID_ICON_DATETIME_SETUP_M 102
#define LV_PLUGIN_IMG_ID_ICON_DATE_PRINT 103
#define LV_PLUGIN_IMG_ID_ICON_DATE_PRINT_M 104
#define LV_PLUGIN_IMG_ID_ICON_DATE_STAMPING 105
#define LV_PLUGIN_IMG_ID_ICON_DATE_TIME 106
#define LV_PLUGIN_IMG_ID_ICON_DDD_OFF 107
#define LV_PLUGIN_IMG_ID_ICON_DDD_OFF_M 108
#define LV_PLUGIN_IMG_ID_ICON_DDD_ON 109
#define LV_PLUGIN_IMG_ID_ICON_DDD_ON_M 110
#define LV_PLUGIN_IMG_ID_ICON_DEFAULT 111
#define LV_PLUGIN_IMG_ID_ICON_DEFAULT_M 112
#define LV_PLUGIN_IMG_ID_ICON_DELETE 113
#define LV_PLUGIN_IMG_ID_ICON_DELETE_ALL 114
#define LV_PLUGIN_IMG_ID_ICON_DELETE_CURRENT 115
#define LV_PLUGIN_IMG_ID_ICON_DELETE_M 116
#define LV_PLUGIN_IMG_ID_ICON_DIR_DOWN 117
#define LV_PLUGIN_IMG_ID_ICON_DIR_LEFT 118
#define LV_PLUGIN_IMG_ID_ICON_DIR_RIGHT 119
#define LV_PLUGIN_IMG_ID_ICON_DIR_UP 120
#define LV_PLUGIN_IMG_ID_ICON_DPOF 121
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BEHIND 122
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BOTH 123
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_BOTH_M 124
#define LV_PLUGIN_IMG_ID_ICON_DUALCAM_FRONT 125
#define LV_PLUGIN_IMG_ID_ICON_EV 126
#define LV_PLUGIN_IMG_ID_ICON_EV_M 127
#define LV_PLUGIN_IMG_ID_ICON_EV_M0P3 128
#define LV_PLUGIN_IMG_ID_ICON_EV_M0P6 129
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P0 130
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P3 131
#define LV_PLUGIN_IMG_ID_ICON_EV_M1P6 132
#define LV_PLUGIN_IMG_ID_ICON_EV_M2P0 133
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P0 134
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P3 135
#define LV_PLUGIN_IMG_ID_ICON_EV_P0P6 136
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P0 137
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P3 138
#define LV_PLUGIN_IMG_ID_ICON_EV_P1P6 139
#define LV_PLUGIN_IMG_ID_ICON_EV_P2P0 140
#define LV_PLUGIN_IMG_ID_ICON_FACE_OFF 141
#define LV_PLUGIN_IMG_ID_ICON_FACE_ON 142
#define LV_PLUGIN_IMG_ID_ICON_FACE_ON_M 143
#define LV_PLUGIN_IMG_ID_ICON_FB_LEFT 144
#define LV_PLUGIN_IMG_ID_ICON_FCW_FAR_ALERT 145
#define LV_PLUGIN_IMG_ID_ICON_FCW_NEAR_ALERT 146
#define LV_PLUGIN_IMG_ID_ICON_FCW_OFF 147
#define LV_PLUGIN_IMG_ID_ICON_FCW_OFF_M 148
#define LV_PLUGIN_IMG_ID_ICON_FCW_ON 149
#define LV_PLUGIN_IMG_ID_ICON_FCW_ON_M 150
#define LV_PLUGIN_IMG_ID_ICON_FF_RIGHT 151
#define LV_PLUGIN_IMG_ID_ICON_FILE_VIDEO 152
#define LV_PLUGIN_IMG_ID_ICON_FIRMWARE_UPDATE 153
#define LV_PLUGIN_IMG_ID_ICON_FIRMWARE_UPDATE_M 154
#define LV_PLUGIN_IMG_ID_ICON_FLASH_AUTO 155
#define LV_PLUGIN_IMG_ID_ICON_FLASH_OFF 156
#define LV_PLUGIN_IMG_ID_ICON_FLASH_ON 157
#define LV_PLUGIN_IMG_ID_ICON_FLASH_ON_M 158
#define LV_PLUGIN_IMG_ID_ICON_FLASH_REC 159
#define LV_PLUGIN_IMG_ID_ICON_FLASH_REC_M 160
#define LV_PLUGIN_IMG_ID_ICON_FLASH_RED_EYE 161
#define LV_PLUGIN_IMG_ID_ICON_FLICK_50HZ 162
#define LV_PLUGIN_IMG_ID_ICON_FLICK_60HZ 163
#define LV_PLUGIN_IMG_ID_ICON_FORMAT 164
#define LV_PLUGIN_IMG_ID_ICON_FORMAT_M 165
#define LV_PLUGIN_IMG_ID_ICON_GOLF_REC 166
#define LV_PLUGIN_IMG_ID_ICON_GOLF_REC_M 167
#define LV_PLUGIN_IMG_ID_ICON_GPS_OFF 168
#define LV_PLUGIN_IMG_ID_ICON_GPS_ON 169
#define LV_PLUGIN_IMG_ID_ICON_GPS_ON_M 170
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR 171
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_HIGH 172
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_LOW 173
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_M 174
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_MID 175
#define LV_PLUGIN_IMG_ID_ICON_G_SENSOR_OFF 176
#define LV_PLUGIN_IMG_ID_ICON_HDR 177
#define LV_PLUGIN_IMG_ID_ICON_HDR_M 178
#define LV_PLUGIN_IMG_ID_ICON_HDR_OFF 179
#define LV_PLUGIN_IMG_ID_ICON_HELP 180
#define LV_PLUGIN_IMG_ID_ICON_HELP_M 181
#define LV_PLUGIN_IMG_ID_ICON_HZ 182
#define LV_PLUGIN_IMG_ID_ICON_HZ_50 183
#define LV_PLUGIN_IMG_ID_ICON_HZ_60 184
#define LV_PLUGIN_IMG_ID_ICON_HZ_M 185
#define LV_PLUGIN_IMG_ID_ICON_INFO 186
#define LV_PLUGIN_IMG_ID_ICON_INFO_M 187
#define LV_PLUGIN_IMG_ID_ICON_INTERNAL_FLASH 188
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_AUTO 189
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_OFF 190
#define LV_PLUGIN_IMG_ID_ICON_IRCUT_ON_M 191
#define LV_PLUGIN_IMG_ID_ICON_ISO 192
#define LV_PLUGIN_IMG_ID_ICON_ISO_100 193
#define LV_PLUGIN_IMG_ID_ICON_ISO_1600 194
#define LV_PLUGIN_IMG_ID_ICON_ISO_200 195
#define LV_PLUGIN_IMG_ID_ICON_ISO_400 196
#define LV_PLUGIN_IMG_ID_ICON_ISO_800 197
#define LV_PLUGIN_IMG_ID_ICON_ISO_AUTO 198
#define LV_PLUGIN_IMG_ID_ICON_ISO_M 199
#define LV_PLUGIN_IMG_ID_ICON_LANDSCAPE 200
#define LV_PLUGIN_IMG_ID_ICON_LANGUAGE 201
#define LV_PLUGIN_IMG_ID_ICON_LANGUAGE_M 202
#define LV_PLUGIN_IMG_ID_ICON_LDWS_LEFT_ALERT 203
#define LV_PLUGIN_IMG_ID_ICON_LDWS_OFF 204
#define LV_PLUGIN_IMG_ID_ICON_LDWS_OFF_M 205
#define LV_PLUGIN_IMG_ID_ICON_LDWS_ON 206
#define LV_PLUGIN_IMG_ID_ICON_LDWS_ON_M 207
#define LV_PLUGIN_IMG_ID_ICON_LDWS_RIGHT_ALERT 208
#define LV_PLUGIN_IMG_ID_ICON_LOCK 209
#define LV_PLUGIN_IMG_ID_ICON_LOCK_ALL 210
#define LV_PLUGIN_IMG_ID_ICON_LOCK_ALL_M 211
#define LV_PLUGIN_IMG_ID_ICON_LOCK_CURRENT 212
#define LV_PLUGIN_IMG_ID_ICON_LOCK_CURRENT_M 213
#define LV_PLUGIN_IMG_ID_ICON_LOCK_M 214
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOCK 215
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOCK_M 216
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOKC_ALL 217
#define LV_PLUGIN_IMG_ID_ICON_LOCK_UNLOKC_ALL_M 218
#define LV_PLUGIN_IMG_ID_ICON_LPR_OFF 219
#define LV_PLUGIN_IMG_ID_ICON_LPR_OFF_M 220
#define LV_PLUGIN_IMG_ID_ICON_LPR_ON 221
#define LV_PLUGIN_IMG_ID_ICON_LPR_ON_M 222
#define LV_PLUGIN_IMG_ID_ICON_MENU_MODECHANG 223
#define LV_PLUGIN_IMG_ID_ICON_MENU_MODECHANG_M 224
#define LV_PLUGIN_IMG_ID_ICON_MENU_PRINT_OFF 225
#define LV_PLUGIN_IMG_ID_ICON_MENU_RETURN 226
#define LV_PLUGIN_IMG_ID_ICON_MENU_RETURN_M 227
#define LV_PLUGIN_IMG_ID_ICON_MENU_SETUP_ON_M 228
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR 229
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR_M 230
#define LV_PLUGIN_IMG_ID_ICON_MENU_WDR_OFF 231
#define LV_PLUGIN_IMG_ID_ICON_METERING 232
#define LV_PLUGIN_IMG_ID_ICON_METERING_M 233
#define LV_PLUGIN_IMG_ID_ICON_MODE_CAPTURE 234
#define LV_PLUGIN_IMG_ID_ICON_MODE_CAPTURE_M 235
#define LV_PLUGIN_IMG_ID_ICON_MODE_PLAYBACK 236
#define LV_PLUGIN_IMG_ID_ICON_MODE_PLAYBACK_M 237
#define LV_PLUGIN_IMG_ID_ICON_MODE_VIDEO 238
#define LV_PLUGIN_IMG_ID_ICON_MODE_VIDEO_M 239
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_OFF 240
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_ON 241
#define LV_PLUGIN_IMG_ID_ICON_MOTION_DET_ON_M 242
#define LV_PLUGIN_IMG_ID_ICON_NO 243
#define LV_PLUGIN_IMG_ID_ICON_NO_M 244
#define LV_PLUGIN_IMG_ID_ICON_OK 245
#define LV_PLUGIN_IMG_ID_ICON_OK2 246
#define LV_PLUGIN_IMG_ID_ICON_OK_M 247
#define LV_PLUGIN_IMG_ID_ICON_OK_M_2 248
#define LV_PLUGIN_IMG_ID_ICON_PD_OFF 249
#define LV_PLUGIN_IMG_ID_ICON_PD_OFF_M 250
#define LV_PLUGIN_IMG_ID_ICON_PD_ON 251
#define LV_PLUGIN_IMG_ID_ICON_PD_ON_M 252
#define LV_PLUGIN_IMG_ID_ICON_PICTBRIDGE_S 253
#define LV_PLUGIN_IMG_ID_ICON_PIM_OFF 254
#define LV_PLUGIN_IMG_ID_ICON_PIM_OFF_M 255
#define LV_PLUGIN_IMG_ID_ICON_PIM_ON 256
#define LV_PLUGIN_IMG_ID_ICON_PIM_ON_M 257
#define LV_PLUGIN_IMG_ID_ICON_PLAY_BACKWARD 258
#define LV_PLUGIN_IMG_ID_ICON_PLAY_FORWARD 259
#define LV_PLUGIN_IMG_ID_ICON_PLAY_PAUSE 260
#define LV_PLUGIN_IMG_ID_ICON_PLAY_PLAY 261
#define LV_PLUGIN_IMG_ID_ICON_PLAY_STEP 262
#define LV_PLUGIN_IMG_ID_ICON_PLAY_STOP 263
#define LV_PLUGIN_IMG_ID_ICON_POWER_OFF 264
#define LV_PLUGIN_IMG_ID_ICON_POWER_OFF_M 265
#define LV_PLUGIN_IMG_ID_ICON_PRINT 266
#define LV_PLUGIN_IMG_ID_ICON_PROTECT 267
#define LV_PLUGIN_IMG_ID_ICON_PROTECT_M 268
#define LV_PLUGIN_IMG_ID_ICON_QUALITY 269
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_BASIC 270
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_FINE 271
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_M 272
#define LV_PLUGIN_IMG_ID_ICON_QUALITY_NORMAL 273
#define LV_PLUGIN_IMG_ID_ICON_QUICK_REVIEW 274
#define LV_PLUGIN_IMG_ID_ICON_QUICK_REVIEW_M 275
#define LV_PLUGIN_IMG_ID_ICON_REC_ELLIPSE 276
#define LV_PLUGIN_IMG_ID_ICON_REC_RECOVERY 277
#define LV_PLUGIN_IMG_ID_ICON_REC_TRANSPAENT 278
#define LV_PLUGIN_IMG_ID_ICON_RESOLUTION 279
#define LV_PLUGIN_IMG_ID_ICON_RESOLUTION_M 280
#define LV_PLUGIN_IMG_ID_ICON_ROTATE 281
#define LV_PLUGIN_IMG_ID_ICON_RSC_OFF 282
#define LV_PLUGIN_IMG_ID_ICON_RSC_ON 283
#define LV_PLUGIN_IMG_ID_ICON_RSC_ON_M 284
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE 285
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_AUTO 286
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_LANDSCPE 287
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_M 288
#define LV_PLUGIN_IMG_ID_ICON_SCENE_MODE_PORTRIAL 289
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER 290
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_10MIN 291
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_3MIN 292
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_5MIN 293
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_M 294
#define LV_PLUGIN_IMG_ID_ICON_SCREENSAVER_OFF 295
#define LV_PLUGIN_IMG_ID_ICON_SD_CARD 296
#define LV_PLUGIN_IMG_ID_ICON_SD_LOCK 297
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER 298
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_10SEC 299
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_2SEC 300
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_5SEC 301
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_M 302
#define LV_PLUGIN_IMG_ID_ICON_SELFTIMER_OFF 303
#define LV_PLUGIN_IMG_ID_ICON_SEQUENCE_NO 304
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_OFF 305
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_ON 306
#define LV_PLUGIN_IMG_ID_ICON_SHAKE_ON_M 307
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS 308
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_HIGH 309
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_LOW 310
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_M 311
#define LV_PLUGIN_IMG_ID_ICON_SHARPNESS_MED 312
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_0STEP 313
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_0STEP_M 314
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_1STEP 315
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_1STEP_M 316
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_2STEP 317
#define LV_PLUGIN_IMG_ID_ICON_SIGNAL_2STEP_M 318
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW 319
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_2SEC 320
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_5SEC 321
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_8SEC 322
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_M 323
#define LV_PLUGIN_IMG_ID_ICON_SLIDESHOW_OFF 324
#define LV_PLUGIN_IMG_ID_ICON_SMILE 325
#define LV_PLUGIN_IMG_ID_ICON_SMILE_M 326
#define LV_PLUGIN_IMG_ID_ICON_SNG_ALERT 327
#define LV_PLUGIN_IMG_ID_ICON_SNG_OFF 328
#define LV_PLUGIN_IMG_ID_ICON_SNG_OFF_M 329
#define LV_PLUGIN_IMG_ID_ICON_SNG_ON 330
#define LV_PLUGIN_IMG_ID_ICON_SNG_ON_M 331
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_OFF 332
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_ON 333
#define LV_PLUGIN_IMG_ID_ICON_SOUND_REC_ON_M 334
#define LV_PLUGIN_IMG_ID_ICON_SPEAKER 335
#define LV_PLUGIN_IMG_ID_ICON_SYS_CAL 336
#define LV_PLUGIN_IMG_ID_ICON_SYS_CAL_M 337
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_OFF 338
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_ON 339
#define LV_PLUGIN_IMG_ID_ICON_TIME_LAPSE_ON_M 340
#define LV_PLUGIN_IMG_ID_ICON_TSR_OFF 341
#define LV_PLUGIN_IMG_ID_ICON_TSR_OFF_M 342
#define LV_PLUGIN_IMG_ID_ICON_TSR_ON 343
#define LV_PLUGIN_IMG_ID_ICON_TSR_ON_M 344
#define LV_PLUGIN_IMG_ID_ICON_TV_MODE 345
#define LV_PLUGIN_IMG_ID_ICON_TV_MODE_M 346
#define LV_PLUGIN_IMG_ID_ICON_TV_NTSC 347
#define LV_PLUGIN_IMG_ID_ICON_TV_PAL 348
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_AUTO 349
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_AUTO_M 350
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_MANUAL 351
#define LV_PLUGIN_IMG_ID_ICON_URGENT_PROTECT_MANUAL_M 352
#define LV_PLUGIN_IMG_ID_ICON_USB_MSDC 353
#define LV_PLUGIN_IMG_ID_ICON_USB_OFF 354
#define LV_PLUGIN_IMG_ID_ICON_USB_ON 355
#define LV_PLUGIN_IMG_ID_ICON_USB_ON_M 356
#define LV_PLUGIN_IMG_ID_ICON_USB_UVC 357
#define LV_PLUGIN_IMG_ID_ICON_VERSION 358
#define LV_PLUGIN_IMG_ID_ICON_VERSION_M 359
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_OFF 360
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_ON 361
#define LV_PLUGIN_IMG_ID_ICON_VIDEO_FLIP_ON_M 362
#define LV_PLUGIN_IMG_ID_ICON_VOICE 363
#define LV_PLUGIN_IMG_ID_ICON_VOICE_M 364
#define LV_PLUGIN_IMG_ID_ICON_VOL_0 365
#define LV_PLUGIN_IMG_ID_ICON_VOL_1 366
#define LV_PLUGIN_IMG_ID_ICON_VOL_2 367
#define LV_PLUGIN_IMG_ID_ICON_WB 368
#define LV_PLUGIN_IMG_ID_ICON_WB_AUTO 369
#define LV_PLUGIN_IMG_ID_ICON_WB_CLOUDY 370
#define LV_PLUGIN_IMG_ID_ICON_WB_DAYLIGHT 371
#define LV_PLUGIN_IMG_ID_ICON_WB_FLUORESCENT 372
#define LV_PLUGIN_IMG_ID_ICON_WB_M 373
#define LV_PLUGIN_IMG_ID_ICON_WB_TUNGSTEN 374
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTED 375
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING1 376
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING2 377
#define LV_PLUGIN_IMG_ID_ICON_WIFI_CONNECTING3 378
#define LV_PLUGIN_IMG_ID_ICON_WIFI_DOT_CONNECTING_OFF 379
#define LV_PLUGIN_IMG_ID_ICON_WIFI_DOT_CONNECTING_ON 380
#define LV_PLUGIN_IMG_ID_ICON_WIFI_FAIL 381
#define LV_PLUGIN_IMG_ID_ICON_WIFI_OFF 382
#define LV_PLUGIN_IMG_ID_ICON_WIFI_OFF_M 383
#define LV_PLUGIN_IMG_ID_ICON_WIFI_ON 384
#define LV_PLUGIN_IMG_ID_ICON_WIFI_ON_M 385
#define LV_PLUGIN_IMG_ID_ICON_YES 386
#define LV_PLUGIN_IMG_ID_ICON_YES_M 387
#define LV_PLUGIN_IMG_TABLE_SIZE 388
#define LV_PLUGIN_FONT_ID_LV_FONT_MONTSERRAT_16 1
#define LV_PLUGIN_FONT_ID_NOTOSANSCJKJP_BLACK_16_1BPP 2
@ -1391,4 +1455,4 @@ LV_IMG_DECLARE(icon_yes_m);
} /* extern "C" */
#endif
#endif
#endif

View File

@ -204,7 +204,7 @@
#define DEFAULT_REDAILY_REPORT_SWITCH SF_OFF
#define DEFAULT_SIN_PIN_FLAG SF_ON
#define DEFAULT_AUTO_OFF_SWITCH SF_ON
#define DEFAULT_DATE_TIME SF_DATE_TIME_DDMMYY
#define DEFAULT_DATE_TIME SF_DATE_TIME_MMDDYY
#define DEFAULT_SEND_PHOTO_SWITCH SF_ON
#define DEFAULT_SEND_VIDEO_SWITCH SF_OFF
#define DEFAULT_SEND_PIC_SIZE SF_SEND_SMALL

View File

@ -233,19 +233,19 @@ static MOVIE_SIZE_ITEM g_MovieSizeTable[] = {
[MOVIE_SIZE_1920x1080P25] = {
{1920, 1080, 25, 104857/*262144 2M = 2*1024*1024/8 */, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 104857/*262144 2M = 2*1024*1024/8 */, 25, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
{1, 4, 25, 104857/*262144 2M = 2*1024*1024/8 */, 50, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
},
[MOVIE_SIZE_1280x720P25] = {
{1280, 720, 25, 58982/*131072 1M = 1*1024*1024/8 */, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 58982/*131072 1M = 1*1024*1024/8 */, 25, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
{1, 4, 25, 58982/*131072 1M = 1*1024*1024/8 */, 50, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
},
[MOVIE_SIZE_848x480P25] = {
{848, 480, 25, 32768/*110100*/, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 32768/*110100*/, 25, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
{1, 4, 25, 32768/*110100*/, 50, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
},
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -945,7 +945,7 @@
////////////////////////sf st/////////////////////////////////////
#define HUNTING_MCU_I2C DISABLE
#define HUNTING_MCU_UART ENABLE
#define HUNTING_IR_LED_940 DISABLE
#define HUNTING_IR_LED_940 ENABLE
#define SF_EXIF_MN_BUF_SIZE 256
#define SF_BASE_VERSION "7MD4RCwD6T4"
#define HW_S530 1

View File

@ -192,7 +192,7 @@
#define DEFAULT_REDAILY_REPORT_SWITCH SF_OFF
#define DEFAULT_SIN_PIN_FLAG SF_ON
#define DEFAULT_AUTO_OFF_SWITCH SF_OFF
#define DEFAULT_DATE_TIME SF_DATE_TIME_DDMMYY
#define DEFAULT_DATE_TIME SF_DATE_TIME_MMDDYY
#define DEFAULT_SEND_PHOTO_SWITCH SF_ON
#define DEFAULT_SEND_VIDEO_SWITCH SF_OFF
#define DEFAULT_SEND_PIC_SIZE SF_SEND_SMALL

View File

@ -275,19 +275,19 @@ static MOVIE_SIZE_ITEM g_MovieSizeTable[] = {
[MOVIE_SIZE_1920x1080P25] = {
{1920, 1080, 25, 104857/*262144 2M = 2*1024*1024/8 */, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 104857/*262144 2M = 2*1024*1024/8 */, 125, 26, 15, 50, 26, 15, 50, 20, 1, 8, 4},
{1, 4, 25, 104857/*262144 2M = 2*1024*1024/8 */, 50, 26, 15, 50, 26, 15, 50, 20, 1, 8, 4},
},
[MOVIE_SIZE_1280x720P25] = {
{1280, 720, 25, 58982/*131072 1M = 1*1024*1024/8 */, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 58982/*131072 1M = 1*1024*1024/8 */, 25, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
{1, 4, 25, 58982/*131072 1M = 1*1024*1024/8 */, 50, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
},
[MOVIE_SIZE_848x480P25] = {
{848, 480, 25, 32768/*110100*/, MEDIAREC_DAR_DEFAULT, IMAGERATIO_16_9},
{1, 3, 36, 8, -8, 0},
{1, 4, 25, 32768/*110100*/, 25, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
{1, 4, 25, 32768/*110100*/, 50, 26, 15, 50, 26, 15, 50, 40, 1, 8, 4},
},
};