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
7c419289
Commit
7c419289
authored
Oct 27, 2021
by
hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加气压表配置功能
parent
e6df2277
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22331 additions
and
22314 deletions
+22331
-22314
project
ghs/project
+0
-0
project.hex
ghs/project.hex
+22076
-22069
project.siz
ghs/project.siz
+1
-1
Data_AirPressure.c
source/Application/APP/Data_AirPressure/Data_AirPressure.c
+30
-17
Data_Fuel_User.c
source/Application/APP/Data_Fuel/Data_Fuel_User.c
+115
-130
GaugesInterface.c
source/Application/APP/GaugesMode/GaugesInterface.c
+109
-97
No files found.
ghs/project
View file @
7c419289
No preview for this file type
ghs/project.hex
View file @
7c419289
This diff is collapsed.
Click to expand it.
ghs/project.siz
View file @
7c419289
project .intvect 1536
project .text 297
64
4
project .text 297
88
4
project .rodata 412311
project .secinfo 120
project .syscall 6
...
...
source/Application/APP/Data_AirPressure/Data_AirPressure.c
View file @
7c419289
...
...
@@ -4,9 +4,8 @@
#include "CAN_Communication_Matrix.h"
#include "RTE_ADC.h"
//-------------------------------------------
//主负气压 数据处理 wangboyu
//-------------------------------------------
#include "Common_Interface.h"
//断码显示
//-------------------------------------------
//344 - 3.1.2.FRONT/REAR空气计显示
...
...
@@ -256,8 +255,22 @@ void AirPressure_AdcData_Filter(void)
uint16_t
PriVoltage
=
0
;
uint16_t
SecVoltage
=
0
;
if
((
K_Line_Set
.
K_Line_LID42
==
0x00
)
||
(
K_Line_Set
.
K_Line_LID42
==
0x02
))
{
u8PriValid
=
RTE_Read_PRIMARY_AIR_Valid
();
u8SecValid
=
RTE_Read_SECONDARY_AIR_Valid
();
}
else
if
((
K_Line_Set
.
K_Line_LID42
==
0x01
)
||
(
K_Line_Set
.
K_Line_LID42
==
0x03
))
{
u8PriValid
=
RTE_Read_SECONDARY_AIR_Valid
();
u8SecValid
=
RTE_Read_PRIMARY_AIR_Valid
();
}
else
/*配置无效时*/
{
u8PriValid
=
RTE_Read_PRIMARY_AIR_Valid
();
u8SecValid
=
RTE_Read_SECONDARY_AIR_Valid
();
}
if
(
u8PriValid
)
{
if
(
AirPressureFilter
[
PRI_ID
].
SumCnt
<
10
)
...
...
source/Application/APP/Data_Fuel/Data_Fuel_User.c
View file @
7c419289
This diff is collapsed.
Click to expand it.
source/Application/APP/GaugesMode/GaugesInterface.c
View file @
7c419289
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