Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
WZ-EF01
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
WZ
WZ-EF01
Commits
a35590a5
Commit
a35590a5
authored
May 22, 2024
by
崔立宝
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改QAC禅道高危问题43378
parent
c7b843b4
Changes
8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
414 additions
and
410 deletions
+414
-410
UDS_ISO14229_Services.h
code/Sources/Diagnostic/inc/UDS_ISO14229_Services.h
+1
-0
UDS_ISO14229_Services.c
code/Sources/Diagnostic/src/UDS_ISO14229_Services.c
+11
-11
main.c
code/Sources/System/src/main.c
+1
-0
WZ_EF01_BootApp_S0.11_F0.08_240522.s19
s19/WZ_EF01_BootApp_S0.11_F0.08_240522.s19
+199
-198
WZ_EF01_UpdateApp_S0.11_F0.08_240522.s19
s19/WZ_EF01_UpdateApp_S0.11_F0.08_240522.s19
+199
-198
释放软件说明.txt
s19/释放软件说明.txt
+2
-2
Option.properties
utility/诊断工具1.10.11 x64/Option/Option.properties
+1
-1
五征EF01-软件变更记录.xlsx
流程文件/五征EF01-软件变更记录.xlsx
+0
-0
No files found.
code/Sources/Diagnostic/inc/UDS_ISO14229_Services.h
View file @
a35590a5
...
@@ -66,6 +66,7 @@ ReadDTCInformation
...
@@ -66,6 +66,7 @@ ReadDTCInformation
#define U300316 0xF00316 //Internal local voltage < 16V
#define U300316 0xF00316 //Internal local voltage < 16V
#define U300317 0xF00317 //Internal local voltage > 32V
#define U300317 0xF00317 //Internal local voltage > 32V
#define U111087 0xD11087 //NM Limphome failure
#define U111087 0xD11087 //NM Limphome failure
#define U014087 0xC14087 //Lost communication with BCM 0x10FF7521
#define U014087 0xC14087 //Lost communication with BCM 0x10FF7521
#define U012187 0xC12187 //Lost communication with ABS 0x18FEBF0B
#define U012187 0xC12187 //Lost communication with ABS 0x18FEBF0B
#define U010087 0xC10087 //Lost communication with EMS 0x0CF00400
#define U010087 0xC10087 //Lost communication with EMS 0x0CF00400
...
...
code/Sources/Diagnostic/src/UDS_ISO14229_Services.c
View file @
a35590a5
...
@@ -98,10 +98,9 @@
...
@@ -98,10 +98,9 @@
//DTC
//DTC
uint32_t
msgList
[
3
][
4
]
=
{
uint32_t
msgList
[
3
][
4
]
=
{
{
0x10FF7521
,
8
,
4000
,
0
,
},
{
0x10FF7521
,
8
,
4000
,
0
,},
{
0x18FEBF0B
,
8
,
1000
,
0
,
},
{
0x18FEBF0B
,
8
,
1000
,
0
,},
{
0x0CF00400
,
8
,
400
,
0
,
},
{
0x0CF00400
,
8
,
400
,
0
,},
};
};
uint16_t
DTCTimerList
[
cnDTCslen
]
=
{
0
};
uint16_t
DTCTimerList
[
cnDTCslen
]
=
{
0
};
uint8_t
isNeedSaveDTC
=
0
;
uint8_t
isNeedSaveDTC
=
0
;
...
@@ -2609,7 +2608,7 @@ void setDTCEnableTimer(uint16_t Timer)
...
@@ -2609,7 +2608,7 @@ void setDTCEnableTimer(uint16_t Timer)
isEnable
=
0
;
isEnable
=
0
;
enableTimer
=
0
;
enableTimer
=
0
;
enableMaxTimer
=
Timer
;
enableMaxTimer
=
Timer
;
for
(
i
=
0
;
i
<
8
;
++
i
)
for
(
i
=
0
;
i
<
3
;
++
i
)
{
{
msgList
[
i
][
3
]
=
0
;
msgList
[
i
][
3
]
=
0
;
}
}
...
@@ -2819,9 +2818,9 @@ void ReceivedMsg(uint32_t MsgID, uint8_t DLC)
...
@@ -2819,9 +2818,9 @@ void ReceivedMsg(uint32_t MsgID, uint8_t DLC)
uint8_t
i
;
uint8_t
i
;
if
(
CoCANCtrl
.
RxEnable
==
CoCAN_ENABLE
)
if
(
CoCANCtrl
.
RxEnable
==
CoCAN_ENABLE
)
{
{
for
(
i
=
0u
;
i
<
8
;
++
i
)
for
(
i
=
0u
;
i
<
3
;
++
i
)
{
{
if
(
(
MsgID
==
msgList
[
i
][
0
])
)
//&& (DLC == msgList [ i ][ 1u ]) )
if
(
(
MsgID
==
msgList
[
i
][
0
])
)
{
{
msgList
[
i
][
3
]
=
0u
;
msgList
[
i
][
3
]
=
0u
;
break
;
break
;
...
@@ -3346,6 +3345,7 @@ void UDS_Service_14_Indication ( uint32_t A_TA_type, uint16_t A_Length, uint8_t
...
@@ -3346,6 +3345,7 @@ void UDS_Service_14_Indication ( uint32_t A_TA_type, uint16_t A_Length, uint8_t
DiagDtc
[
i
].
Status
.
Flag
=
0x00
;
DiagDtc
[
i
].
Status
.
Flag
=
0x00
;
DTCTimerList
[
i
]
=
0
;
DTCTimerList
[
i
]
=
0
;
DTCUpdataStatusList
[
i
]
=
1u
;
DTCUpdataStatusList
[
i
]
=
1u
;
if
(
i
<
3
)
msgList
[
i
][
3
]
=
0
;
msgList
[
i
][
3
]
=
0
;
}
}
...
...
code/Sources/System/src/main.c
View file @
a35590a5
...
@@ -29,6 +29,7 @@
...
@@ -29,6 +29,7 @@
//20240446 修改车厂问题:0x18FE8E17外发不对(新报文矩阵无平均油耗输出)
//20240446 修改车厂问题:0x18FE8E17外发不对(新报文矩阵无平均油耗输出)
//20240430 修改软件版本号
//20240430 修改软件版本号
//20240515 修改禅道QAC高危问题:42983、42982、42979
//20240515 修改禅道QAC高危问题:42983、42982、42979
//20240522 修改禅道QAC高危问题:43378
#include "main.h"
#include "main.h"
#include "fuelconfig.h"
#include "fuelconfig.h"
...
...
s19/WZ_EF01_BootApp_S0.11_F0.08_2405
16
.s19
→
s19/WZ_EF01_BootApp_S0.11_F0.08_2405
22
.s19
View file @
a35590a5
This diff is collapsed.
Click to expand it.
s19/WZ_EF01_UpdateApp_S0.11_F0.08_2405
16
.s19
→
s19/WZ_EF01_UpdateApp_S0.11_F0.08_2405
22
.s19
View file @
a35590a5
This diff is collapsed.
Click to expand it.
s19/释放软件说明.txt
View file @
a35590a5
1、WZ_EF01_BootApp_S0.11_FV0.08_2405
16
.s19,完整版,适用于新生产的无程序仪表
1、WZ_EF01_BootApp_S0.11_FV0.08_2405
22
.s19,完整版,适用于新生产的无程序仪表
2、WZ_EF01_UpdateApp_S0.11_F0.08_2405
16
.s19,APP版,适用于烧过完整版程序仪表,需配合诊断工具使用
2、WZ_EF01_UpdateApp_S0.11_F0.08_2405
22
.s19,APP版,适用于烧过完整版程序仪表,需配合诊断工具使用
utility/诊断工具1.10.11 x64/Option/Option.properties
View file @
a35590a5
#new Option
#new Option
#
Thu May 16 17:45:22
CST 2024
#
Wed May 22 16:01:36
CST 2024
IsSort
=
true
IsSort
=
true
MergeFlashIsCompression
=
false
MergeFlashIsCompression
=
false
ChangeAppFilePath
=
ChangeAppFilePath
=
...
...
流程文件/五征EF01-软件变更记录.xlsx
View file @
a35590a5
No preview for this file type
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