Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
haoJin750TFT
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
时昊
haoJin750TFT
Commits
656d06f3
Commit
656d06f3
authored
Sep 19, 2024
by
王雅楠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🦄
refactor:修改导航界面车速显示效果
parent
6539478d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
AMT630H_Datas.c
Firmware/Source/Component/AMT630H/AMT630H_Datas.c
+14
-4
No files found.
Firmware/Source/Component/AMT630H/AMT630H_Datas.c
View file @
656d06f3
...
...
@@ -4167,7 +4167,7 @@ static void AMT630H_GUI_VSpeed(uint16_t VSpeed)
DisplayNum
(
GRAPHICS_PAGE_0
,
&
DisplayNumPara
,
VSpeedNumber
);
}
else
if
((
10
<=
VSpeedNumber
))
else
if
((
10
<=
VSpeedNumber
)
&&
(
VSpeedNumber
<
100
)
)
{
DisplayNumPara
.
x
=
515
;
DisplayNumPara
.
NumInterval
=
GROUP_PIC_DIR_LEFT
|
118
;
...
...
@@ -4177,7 +4177,7 @@ static void AMT630H_GUI_VSpeed(uint16_t VSpeed)
DisplayNum
(
GRAPHICS_PAGE_0
,
&
DisplayNumPara
,
VSpeedNumber
);
}
else
if
(
0
<=
VSpeedNumber
)
else
if
(
(
0
<=
VSpeedNumber
)
&&
(
VSpeedNumber
<
10
)
)
{
if
(
VSpeedNumber
==
1
)
{
...
...
@@ -4305,7 +4305,7 @@ static void AMT630H_GUI_PhoneConnect_VSpeed(uint16_t VSpeed)
DisplayNum
(
GRAPHICS_PAGE_0
,
&
DisplayNumPara
,
VSpeedNumber
);
}
else
if
((
10
<=
VSpeedNumber
))
else
if
((
10
<=
VSpeedNumber
)
&&
(
VSpeedNumber
<
100
)
)
{
DisplayNumPara
.
x
=
514
;
DisplayNumPara
.
NumInterval
=
GROUP_PIC_DIR_LEFT
|
60
;
...
...
@@ -4315,7 +4315,7 @@ static void AMT630H_GUI_PhoneConnect_VSpeed(uint16_t VSpeed)
DisplayNum
(
GRAPHICS_PAGE_0
,
&
DisplayNumPara
,
VSpeedNumber
);
}
else
if
(
0
<=
VSpeedNumber
)
else
if
(
(
0
<=
VSpeedNumber
)
&&
(
VSpeedNumber
<
10
)
)
{
if
(
VSpeedNumber
==
1
)
{
...
...
@@ -4969,6 +4969,16 @@ void AMT630H_GUI_ReadPosittion_Display(void)
// SetPagePic(GRAPHICS_PAGE_0, Pic_0382_0_0);/*背景图*/
AMT630H_GUI_PhoneConnect_Light
();
AMT630H_GUI_PhoneConnect_TIME
(
Get_Dis_Hour_Time
(),
Get_Dis_Minute_Time
());
if
(
VechileSpeed_time
<
4
)
{
// VechileSpeed_time++;
}
else
{
VechileSpeed_time
=
0
;
VechileSpeed
=
Get_DispVechileSpeed
()
/
10
;
}
AMT630H_GUI_PhoneConnect_VSpeed
(
VechileSpeed
);
AMT630H_GUI_PhoneConnect_ESpeed
(
Get_DispEngineSpeed
());
AMT630H_GUI_PhoneConnect_Fuel
(
Get_CurFuelSetp
());
...
...
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