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
17915a87
Commit
17915a87
authored
May 24, 2022
by
hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车厂调整指示灯影线报警BUG
parent
3edaee91
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
33 deletions
+34
-33
Data_Fuel_User.c
source/Application/APP/Data_Fuel/Data_Fuel_User.c
+2
-0
Line_In_user.c
source/Application/APP/LINE_IN/Line_In_user.c
+1
-1
Telltales_user.c
source/Application/APP/Telltales/Telltales_user.c
+29
-30
Popups.c
source/Application/Alarm/Popups.c
+2
-2
No files found.
source/Application/APP/Data_Fuel/Data_Fuel_User.c
View file @
17915a87
...
...
@@ -287,4 +287,6 @@ uint8_t Fuel_Get_Popup_Sta(void)
{
Popup_Sta
=
0u
;
}
return
Popup_Sta
;
}
\ No newline at end of file
source/Application/APP/LINE_IN/Line_In_user.c
View file @
17915a87
...
...
@@ -53,7 +53,7 @@ const Line_In_Attribute_st_t g_stLineInAttribute[LINE_IN_MAX] =
{
LINE_IN_LEVEL_LOW
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_ACC_AIR
,},
/*B15 ACC AIR*/
{
LINE_IN_LEVEL_HIGH
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_AIR_SUS
,},
/*B30 AIR SUS*/
{
LINE_IN_LEVEL_LOW
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_TRAILER_BRAKE
,},
/*B31 TRAILER BRAKE*/
{
LINE_IN_LEVEL_
HIGH
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_TRAILER_ABS
,},
/*B33 TRAILER ABS*/
{
LINE_IN_LEVEL_
LOW
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_TRAILER_ABS
,},
/*B33 TRAILER ABS*/
{
LINE_IN_LEVEL_HIGH
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_RR_DIFF_LOCK
,},
/*B36 RR DIFF LOCK*/
{
LINE_IN_LEVEL_LOW
,
200U
,
0U
,
LINE_IN_IG_ON
,
LINE_IN_Get_WEAR_IND
,},
/*B38 WEAR IND*/
...
...
source/Application/APP/Telltales/Telltales_user.c
View file @
17915a87
...
...
@@ -243,31 +243,31 @@ void Telltales_Left_Right_Management_Service(void) /*10ms*/
Edge
=
RIGHT_ST
;
}
if
(
TelltaleLRCtrl
.
Delay
>
0u
)
{
TelltaleLRCtrl
.
Delay
--
;
}
else
{
if
(
Edge
!=
0xFFu
)
{
if
(
Edge
)
{
Sound_Request
(
SND_TICK
,
1u
);
}
else
{
Sound_Request
(
SND_TOCK
,
1u
);
}
TelltaleLRCtrl
.
Delay
=
10u
;
/*200ms内不允许重复播放声音*/
}
else
{
Sound_Delete
(
SND_TICK
);
Sound_Delete
(
SND_TOCK
);
}
}
//
if (TelltaleLRCtrl.Delay > 0u)
//
{
//
TelltaleLRCtrl.Delay--;
//
}
//
else
//
{
//
if (Edge != 0xFFu)
//
{
//
if (Edge)
//
{
//
Sound_Request(SND_TICK, 1u);
//
}
//
else
//
{
//
Sound_Request(SND_TOCK, 1u);
//
}
//
//
TelltaleLRCtrl.Delay = 10u; /*200ms内不允许重复播放声音*/
//
}
//
else
//
{
//
Sound_Delete(SND_TICK);
//
Sound_Delete(SND_TOCK);
//
}
//
}
}
void
LED_Left_Right_Execution
(
uint8_t
led_status
)
...
...
@@ -1466,7 +1466,7 @@ void LED_AMT_L_Execution(uint8_t led_status)
L15 WEAR IND
信号接口: B38 0V B40 0V
信号定义:
输出信号:
输出信号:
接地熄灭20220524
******************************************************************************/
uint8_t
LED_WEAR_IND_L_Judgement
(
void
)
{
...
...
@@ -1477,13 +1477,13 @@ uint8_t LED_WEAR_IND_L_Judgement(void)
m_Condition1
=
(
uint8_t
)
Line_In_Get_Status
(
LINE_IN_WEAR_IND
);
m_Condition2
=
(
uint8_t
)
Line_In_Get_Status
(
LINE_IN_WEAR2
);
if
((
m_Condition1
==
1u
)
||
(
m_Condition2
==
0x01u
))
if
((
m_Condition1
==
0x01u
)
&&
(
m_Condition2
==
0x01u
))
{
u8Result
=
1
u
;
u8Result
=
0
u
;
}
else
{
u8Result
=
0
u
;
u8Result
=
1
u
;
}
return
u8Result
;
...
...
@@ -2013,7 +2013,6 @@ uint8_t LED_Fuel_Judgement(void)
u8Result
=
0u
;
}
return
u8Result
;
}
void
LED_Fuel_Execution
(
uint8_t
led_status
)
...
...
source/Application/Alarm/Popups.c
View file @
17915a87
...
...
@@ -788,7 +788,7 @@ void Popups_Polling(void)
/*52.--6--后蹄片磨损*/
variable_1
=
Line_In_Get_Status
(
LINE_IN_WEAR2
);
if
(
variable_1
==
LINE_IN_LOGIC_VALID
)
if
(
variable_1
==
LINE_IN_LOGIC_
IN
VALID
)
{
Popup_Request
(
POPUP8_BRAKE_BLOCKR
);
}
...
...
@@ -800,7 +800,7 @@ void Popups_Polling(void)
/*53.--7--前蹄片磨损*/
variable_1
=
Line_In_Get_Status
(
LINE_IN_WEAR_IND
);
if
(
variable_1
==
LINE_IN_LOGIC_VALID
)
if
(
variable_1
==
LINE_IN_LOGIC_
IN
VALID
)
{
Popup_Request
(
POPUP8_BRAKE_BLOCKF
);
}
...
...
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