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
1cff1900
Commit
1cff1900
authored
Sep 03, 2024
by
王金亮
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🐞
fix:56857 【豪进7500TFT】【绥化】【自检】请确认有车速时,按键是否响应
自检时不能操作按键,下电后,菜单重新回到初始界面
parent
fda8cabd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
1 deletion
+14
-1
AMT630H_Datas.h
Firmware/Source/Component/AMT630H/AMT630H_Datas.h
+1
-0
Key_user.c
Firmware/Source/Component/Key/Key_user.c
+9
-0
Key_user.h
Firmware/Source/Component/Key/Key_user.h
+2
-0
PowerManag_user.c
Firmware/Source/Component/PowerManagement/PowerManag_user.c
+1
-0
Sys_Task_List.c
Firmware/Source/System/Sys_Task_List.c
+1
-1
No files found.
Firmware/Source/Component/AMT630H/AMT630H_Datas.h
View file @
1cff1900
...
...
@@ -61,6 +61,7 @@ extern void AMT630H_GUI_SELFCHECK_STS_INIT(void);
extern
uint8_t
g_u8Display_Mode
;
extern
uint8_t
g_u8Display_Mode_select
;
extern
uint8_t
g_u8SelfCheck
;
...
...
Firmware/Source/Component/Key/Key_user.c
View file @
1cff1900
...
...
@@ -385,6 +385,15 @@ void Get_DisTime_Service(void)
}
void
My_Key_Service
(
void
)
{
/* 自检时不可操作按键 */
if
(
g_u8SelfCheck
)
{
Key_Service
();
}
}
uint8_t
Get_Dis_Hour_Time
(
void
)
{
return
MenuData
.
u8Dis_Hour
;
...
...
Firmware/Source/Component/Key/Key_user.h
View file @
1cff1900
...
...
@@ -77,6 +77,8 @@ uint8_t Get_Dis_Bluetooth_Open_Close(void);
uint8_t
Get_Dis_Language
(
void
);
void
Get_DisTime_Service
(
void
);
extern
void
My_Key_Service
(
void
);
#endif
Firmware/Source/Component/PowerManagement/PowerManag_user.c
View file @
1cff1900
...
...
@@ -136,6 +136,7 @@ static void Power_IG_ON_Init(void)
FaultCode_Init
();
Amt630hInit
();
AMT630H_GUI_SELFCHECK_STS_INIT
();
Menu_Service
(
MENU_KEY_TIMEOUT
);
/* 菜单回到初始界面 */
}
static
void
Power_Sleep_Init
(
void
)
...
...
Firmware/Source/System/Sys_Task_List.c
View file @
1cff1900
...
...
@@ -35,7 +35,7 @@ void Sys_10ms_Tasks(void)
{
FaultCode_Service
(
10u
);
Line_In_Debounce_Service
(
10u
);
Key_Service
();
My_
Key_Service
();
Data_Mileage_Write_EEPROM
();
Key_Clear_Time
();
Key_TimeOut_Service
();
...
...
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