Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
new-socketemulator
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
李远洪
new-socketemulator
Commits
f5619885
Commit
f5619885
authored
Oct 19, 2020
by
liyuanhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
M500模拟器,修复了事件上报的UTC时间不对问题
parent
2b42d4f3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lib/protocol/report/EventReport_protocol.py
lib/protocol/report/EventReport_protocol.py
+4
-0
views/protocolTools/M_carSimulater_process.py
views/protocolTools/M_carSimulater_process.py
+1
-1
No files found.
lib/protocol/report/EventReport_protocol.py
View file @
f5619885
...
...
@@ -45,6 +45,10 @@ class EventReport_protocol(ProtocolBase):
self
.
securityData
=
securityData
event
=
data
[
"event"
]
self
.
event
=
event
timeStamp
=
time
.
time
()
-
8
*
3600
timeArray
=
time
.
localtime
(
timeStamp
)
curTime
=
time
.
strftime
(
"
%
Y-
%
m-
%
d
%
H:
%
M:
%
S"
,
timeArray
)
gpsInfo
[
"UTCTime"
]
=
curTime
self
.
GPSPkg
=
GPSReport_protocol
(
1
,
self
.
WATER_CODE
,
self
.
DEV_ID
,
gpsInfo
[
"UTCTime"
],
gpsInfo
[
"latitude"
],
gpsInfo
[
"longitude"
]
\
,
gpsInfo
[
"speed"
],
gpsInfo
[
"directionAngle"
],
gpsInfo
[
"elevation"
],
gpsInfo
[
"positionStar"
],
gpsInfo
[
"Pdop"
]
\
,
gpsInfo
[
"Hdop"
],
gpsInfo
[
"Vdop"
],
gpsInfo
[
"statusBit"
],
gpsInfo
[
"valtage"
],
gpsInfo
[
"OBDSpeed"
],
gpsInfo
[
"engineSpeed"
]
\
...
...
views/protocolTools/M_carSimulater_process.py
View file @
f5619885
...
...
@@ -1314,7 +1314,7 @@ def sendRapidChangeLeftLanes():
# 打印异常信息
traceback
.
print_exc
()
data
[
"status"
]
=
"4003"
data
[
"message"
]
=
"Error: 发送
急左变道
告警事件失败!"
data
[
"message"
]
=
"Error: 发送
怠速解除
告警事件失败!"
return
Response
(
json
.
dumps
(
data
),
mimetype
=
'application/json'
)
##########################################
...
...
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