Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-web-camvc
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Elphel
elphel-web-camvc
Commits
e0d3046f
Commit
e0d3046f
authored
Nov 01, 2016
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1. fixed a minor bug 2.suppress php date() warning 3. correct date format for linux date
parent
eba59843
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
camvc.php
src/camvc.php
+2
-2
No files found.
src/camvc.php
View file @
e0d3046f
...
...
@@ -345,12 +345,12 @@ function decodeGet ($encoded_get) {
case
"_time"
:
$toRead
[
"req_ts"
]
=
$value
;
/// Request time stamp, as received. Will be used by sender
$a
=
((
float
)
$value
)
/
1000
;
if
(
abs
(
elphel_get_fpga_time
()
-
$a
)
>
24
*
3600
)
break
;
// time already set
if
(
abs
(
elphel_get_fpga_time
()
-
$a
)
<
24
*
3600
)
break
;
// time already set
case
"_stime"
:
$toRead
[
"req_ts"
]
=
$value
;
$a
=
((
float
)
$value
)
/
1000
;
elphel_set_fpga_time
(
$a
);
// set FPGA time
exec
(
"date -s "
.
date
(
"mdHiY.s
"
,(
int
)
$a
),
$out
,
$ret
);
// set system time
exec
(
"date -s "
.
@
date
(
"Y-m-d H:i:s.u
"
,(
int
)
$a
),
$out
,
$ret
);
// set system time
exec
(
"hwclock --systohc"
);
break
;
case
"imgsrv"
:
...
...
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