Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
VC66_7C
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISUZU
VC66_7C
Commits
2ad59a75
Commit
2ad59a75
authored
3 years ago
by
hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更换图片FV00.03
parent
4c515d8e
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23954 additions
and
23900 deletions
+23954
-23900
project
ghs/project
+0
-0
project.hex
ghs/project.hex
+22999
-22988
project.siz
ghs/project.siz
+2
-2
GUI.c
source/Application/Graphic/GUI/GUI.c
+20
-18
GUI.h
source/Application/Graphic/GUI/GUI.h
+1
-0
images.c
source/Driver/Graphic/images.c
+912
-892
images.h
source/Driver/Graphic/images.h
+20
-0
No files found.
ghs/project
View file @
2ad59a75
No preview for this file type
This diff is collapsed.
Click to expand it.
ghs/project.hex
View file @
2ad59a75
This diff is collapsed.
Click to expand it.
ghs/project.siz
View file @
2ad59a75
project .intvect 1536
project .text 3162
04
project .rodata 41
079
1
project .text 3162
52
project .rodata 41
111
1
project .secinfo 120
project .syscall 6
project .romdata 9029
...
...
This diff is collapsed.
Click to expand it.
source/Application/Graphic/GUI/GUI.c
View file @
2ad59a75
...
...
@@ -130,7 +130,7 @@ void GUI_Display_Value_Init(void)
/*应用*/
User_App
.
User_Language
=
1u
;
User_App
.
User_Company
=
1u
;
User_App
.
User_Light
=
10u
;
/
/背光初始化
User_App
.
User_Light
=
10u
;
/
*背光初始化*/
/*保养状态标识*/
if
(
K_Line_Set
.
K_Line_LID4F
)
...
...
@@ -185,9 +185,9 @@ void GUI_Display_Value_Init(void)
User_set_Num
.
User_LT
=
User_App
.
User_LT
;
/*用户设定*/
User_set_Num
.
User_Language
=
User_App
.
User_Language
;
User_set_Num
.
User_Company
=
User_App
.
User_Company
;
User_set_Num
.
User_Light
=
User_App
.
User_Light
;
User_set_Num
.
User_Language
=
User_App
.
User_Language
;
User_set_Num
.
User_Company
=
User_App
.
User_Company
;
User_set_Num
.
User_Light
=
User_App
.
User_Light
;
User_App
.
User_Gsl
=
0xFFu
;
User_App
.
User_Ybl
=
0xFFu
;
...
...
@@ -197,13 +197,13 @@ void GUI_Display_Value_Init(void)
User_App
.
User_IDLING
=
K_Line_Set
.
K_Line_LID48
;
/*长时间怠速*/
User_App
.
User_Parking
=
K_Line_Set
.
K_Line_LID49
;
/*辅助驻车*/
User_set_Num
.
User_Gsl
=
User_App
.
User_Gsl
;
User_set_Num
.
User_Ybl
=
User_App
.
User_Ybl
;
User_set_Num
.
User_Speed
=
User_App
.
User_Speed
;
User_set_Num
.
User_JADD
=
User_App
.
User_JADD
;
User_set_Num
.
User_JSUB
=
User_App
.
User_JSUB
;
User_set_Num
.
User_IDLING
=
User_App
.
User_IDLING
;
User_set_Num
.
User_Parking
=
User_App
.
User_Parking
;
User_set_Num
.
User_Gsl
=
User_App
.
User_Gsl
;
User_set_Num
.
User_Ybl
=
User_App
.
User_Ybl
;
User_set_Num
.
User_Speed
=
User_App
.
User_Speed
;
User_set_Num
.
User_JADD
=
User_App
.
User_JADD
;
User_set_Num
.
User_JSUB
=
User_App
.
User_JSUB
;
User_set_Num
.
User_IDLING
=
User_App
.
User_IDLING
;
User_set_Num
.
User_Parking
=
User_App
.
User_Parking
;
//MenuFlag.Sig.Menu_Flag = 0;
#if 0
...
...
@@ -483,11 +483,11 @@ void GUI_Time_Dispaly(uint8_t Mode)
}
else
if
(
Time_Hours
>
12u
)
{
GUI_General_Digit_Display
(
Time_Sprite
,
(
Time_Hours
-
12u
),
Nb_21_0
,
2u
,
1u
,
GUI_DISP_Hours
,
37
,
GUI_BLENDMODE_SRC_OVER
);
/
/ PM
GUI_General_Digit_Display
(
Time_Sprite
,
(
Time_Hours
-
12u
),
Nb_21_0
,
2u
,
1u
,
GUI_DISP_Hours
,
37
,
GUI_BLENDMODE_SRC_OVER
);
/
* PM */
}
else
{
GUI_General_Digit_Display
(
Time_Sprite
,
Time_Hours
,
Nb_21_0
,
2u
,
1u
,
GUI_DISP_Hours
,
37
,
GUI_BLENDMODE_SRC_OVER
);
/
/ AM
GUI_General_Digit_Display
(
Time_Sprite
,
Time_Hours
,
Nb_21_0
,
2u
,
1u
,
GUI_DISP_Hours
,
37
,
GUI_BLENDMODE_SRC_OVER
);
/
* AM */
}
}
else
...
...
@@ -5360,8 +5360,9 @@ void GUI_BG_UserSet_SYSD_JADD_Display(uint8_t Mode)
if
(
User_Value
!=
0xFF
)
{
GUI_General_Digit_Display
(
MENU_Sprite
,
User_Value
,
Nb_15_0
,
4u
,
3u
,
GUI_SYSSET_X
,
255u
,
GUI_BLENDMODE_SRC_OVER
);
/*数字*/
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_03_kmh
,
GUI_BLENDMODE_SRC_OVER
);
/*m/s2*/
GUI_General_Digit_Display
(
MENU_Sprite
,
User_Value
,
Nb_15_0
,
2u
,
0u
,
GUI_SYSJDD_X
,
251u
,
GUI_BLENDMODE_SRC_OVER
);
/*数字*/
GUI_Translate_Display
(
MENU_Sprite
,
Nb_15_dian
,
454u
,
254u
,
GUI_BLENDMODE_CUSTOM
);
/*dot*/
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_03_ms2
,
GUI_BLENDMODE_SRC_OVER
);
/*m/s2*/
}
else
{
...
...
@@ -5395,8 +5396,9 @@ void GUI_BG_UserSet_SYSD_JSUB_Display(uint8_t Mode)
if
(
User_Value
!=
0xFF
)
{
GUI_General_Digit_Display
(
MENU_Sprite
,
User_Value
,
Nb_15_0
,
4u
,
3u
,
GUI_SYSSET_X
,
255u
,
GUI_BLENDMODE_SRC_OVER
);
/*数字*/
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_03_kmh
,
GUI_BLENDMODE_SRC_OVER
);
/*m/s2*/
GUI_General_Digit_Display
(
MENU_Sprite
,
User_Value
,
Nb_15_0
,
2u
,
0u
,
GUI_SYSJDD_X
,
251u
,
GUI_BLENDMODE_SRC_OVER
);
/*数字*/
GUI_Translate_Display
(
MENU_Sprite
,
Nb_15_dian
,
454u
,
254u
,
GUI_BLENDMODE_CUSTOM
);
/*dot*/
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_03_ms2
,
GUI_BLENDMODE_SRC_OVER
);
/*m/s2*/
}
else
{
...
...
@@ -5493,7 +5495,7 @@ void GUI_BG_Enter_Return_Display(uint8_t Mode)
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_01_wenzi
,
GUI_BLENDMODE_SRC_OVER
);
/*menu*/
GUI_General_Display
(
MENU_Sprite
,
CN_fengexian
,
GUI_BLENDMODE_SRC_OVER
);
/*line*/
if
(
State_Flag
.
ENTER_RETURN
==
0
)
if
(
State_Flag
.
ENTER_RETURN
==
0
u
)
{
GUI_General_Display
(
MENU_Sprite
,
CN_User_Menu3_01_10
,
GUI_BLENDMODE_SRC_OVER
);
GUI_General_Display
(
MENU_Sprite
,
CN_white_yes
,
GUI_BLENDMODE_SRC_OVER
);
...
...
This diff is collapsed.
Click to expand it.
source/Application/Graphic/GUI/GUI.h
View file @
2ad59a75
...
...
@@ -174,6 +174,7 @@ static const uint16_t GUI_REP_X[4] = {582u, 565u, 547u, 521u};
static
const
uint16_t
GUI_SETREP_X
[
6
]
=
{
520u
,
503u
,
485u
,
458u
,
441u
,
424u
};
static
const
uint16_t
GUI_SYSSET_X
[
4
]
=
{
520u
,
503u
,
485u
,
468u
};
static
const
uint16_t
GUI_SYSSPEED
[
2
]
=
{
485u
,
468u
};
static
const
uint16_t
GUI_SYSJDD_X
[
2
]
=
{
469u
,
441u
};
static
const
uint16_t
GUIUsetSetYPos
[
2
]
=
{
304u
,
282u
};
static
const
uint16_t
GUIUsetSetYPosX
[
2
]
=
{
358u
,
337u
};
...
...
This diff is collapsed.
Click to expand it.
source/Driver/Graphic/images.c
View file @
2ad59a75
This source diff could not be displayed because it is too large. You can
view the blob
instead.
This diff is collapsed.
Click to expand it.
source/Driver/Graphic/images.h
View file @
2ad59a75
...
...
@@ -76,6 +76,7 @@ enum SpriteName
Nb_15_7
,
Nb_15_8
,
Nb_15_9
,
Nb_15_dian
,
Nb_15_douhao
,
Nb_15_fuhao
,
Nb_15_maohao
,
...
...
@@ -384,6 +385,11 @@ enum SpriteName
CN_Alarm_stop_44_wenzi1_2
,
CN_Alarm_stop_44_wenzi2_1
,
CN_Alarm_stop_44_wenzi2_2
,
CN_Alarm_drive_70_image
,
CN_Alarm_drive_70_wenzi1
,
CN_Alarm_stop_70_wenzi1_1
,
CN_Alarm_stop_70_wenzi2
,
CN_Alarm_stop_71_wenzi1_1
,
CN_DPD_duijiliang
,
CN_DPD_H
,
CN_DPD_L
,
...
...
@@ -463,6 +469,7 @@ enum SpriteName
CN_ADAS_wenzi
,
CN_che
,
CN_che_shanshuo
,
CN_che_yinying
,
CN_jiao1
,
CN_jiao2
,
CN_jiao3
,
...
...
@@ -470,15 +477,27 @@ enum SpriteName
CN_LeftRoad
,
CN_LeftRoad_1
,
CN_LeftRoad_shanshuo
,
CN_LeftRoad_shanshuo_1
,
CN_LeftRoad_shanshuo_2
,
CN_LeftRoad_yinying
,
CN_RightRoad
,
CN_RightRoad_1
,
CN_RightRoad_shanshuo
,
CN_RightRoad_shanshuo_1
,
CN_RightRoad_shanshuo_2
,
CN_RightRoad_yiying
,
CN_Road1
,
CN_Road1_shanshuo
,
CN_Road1_shanshuo_1
,
CN_Road1_yinying
,
CN_Road2
,
CN_Road2_shanshuo
,
CN_Road2_shanshuo_1
,
CN_Road2_yinying
,
CN_Road3
,
CN_Road3_shanshuo
,
CN_Road3_shanshuo_1
,
CN_Road3_yinying
,
CN_tanhao1
,
CN_tanhao2
,
CN_fengexian
,
...
...
@@ -819,6 +838,7 @@ enum SpriteName
CN_User_Menu3_03_kuai
,
CN_User_Menu3_03_kuang
,
CN_User_Menu3_03_man
,
CN_User_Menu3_03_ms2
,
CN_User_Menu3_03_nian
,
CN_User_Menu3_03_PM
,
CN_User_Menu3_03_redge
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment