Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-apps-autocampars
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-apps-autocampars
Commits
b324c0bb
Commit
b324c0bb
authored
Apr 04, 2018
by
Oleg Dzhimiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
recover external trigger branch
parent
896b9393
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
25 deletions
+34
-25
autocampars.php
src/autocampars.php
+34
-25
No files found.
src/autocampars.php
View file @
b324c0bb
...
@@ -1131,14 +1131,14 @@ function init_cameras(){ // $page) { init can only be from default page as page
...
@@ -1131,14 +1131,14 @@ function init_cameras(){ // $page) { init can only be from default page as page
unset
(
$GLOBALS
[
'trig_pars'
][
'TRIG_PERIOD'
]);
unset
(
$GLOBALS
[
'trig_pars'
][
'TRIG_PERIOD'
]);
}
}
elphel_set_P_arr
(
$GLOBALS
[
'master_port'
],
$GLOBALS
[
'trig_pars'
]);
// set other parameters - they will not take effect immediately
elphel_set_P_arr
(
$GLOBALS
[
'master_port'
],
$GLOBALS
[
'trig_pars'
]);
// set other parameters - they will not take effect immediately
usleep
(
$GLOBALS
[
'camera_state_arr'
][
'max_frame_time'
]);
//
usleep ($GLOBALS['camera_state_arr']['max_frame_time']);
if
(
$trig_period
){
if
(
$trig_period
){
// The line below applies the parameter in a normal way - otherwise, if unlucky, TRIG_PERIOD can jump
// The line below applies the parameter in a normal way - otherwise, if unlucky, TRIG_PERIOD can jump
// between 1 and $trig_period.
// between 1 and $trig_period.
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_PERIOD
,
$trig_period
,
0
);
//
elphel_set_P_value ( $GLOBALS['master_port'], ELPHEL_TRIG_PERIOD, $trig_period, 0);
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_PERIOD
,
$trig_period
);
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_PERIOD
,
$trig_period
);
// Set parameter immediately
// Set parameter immediately
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_PERIOD
,
$trig_period
,
ELPHEL_CONST_FRAME_IMMED
);
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_PERIOD
,
$trig_period
,
ELPHEL_CONST_FRAME_IMMED
,
ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC
);
log_msg
(
"Started camera in periodic self-triggered mode, period = "
.
(
0.00000001
*
$trig_period
)
.
" s"
,
3
);
log_msg
(
"Started camera in periodic self-triggered mode, period = "
.
(
0.00000001
*
$trig_period
)
.
" s"
,
3
);
}
else
{
// manually advance frames
}
else
{
// manually advance frames
if
(
!
$GLOBALS
[
'camera_state_arr'
][
'frames_skip_more'
]
>
ELPHEL_CONST_FRAME_DEAFAULT_AHEAD
){
if
(
!
$GLOBALS
[
'camera_state_arr'
][
'frames_skip_more'
]
>
ELPHEL_CONST_FRAME_DEAFAULT_AHEAD
){
...
@@ -1153,6 +1153,8 @@ function init_cameras(){ // $page) { init can only be from default page as page
...
@@ -1153,6 +1153,8 @@ function init_cameras(){ // $page) { init can only be from default page as page
}
}
log_msg
(
"Reached state "
.
$GLOBALS
[
'camera_state_arr'
][
'state'
]);
log_msg
(
"Reached state "
.
$GLOBALS
[
'camera_state_arr'
][
'state'
]);
}
else
{
}
else
{
// Triggered input mode, not sure where input comes from
if
(
isset
(
$curl_data
))
{
// wait and collect responses
unset
(
$trig_out
);
unset
(
$trig_out
);
unset
(
$trig_period
);
unset
(
$trig_period
);
if
(
array_key_exists
(
'TRIG_OUT'
,
$GLOBALS
[
'trig_pars'
])
&&
$GLOBALS
[
'trig_pars'
][
'TRIG_OUT'
]){
if
(
array_key_exists
(
'TRIG_OUT'
,
$GLOBALS
[
'trig_pars'
])
&&
$GLOBALS
[
'trig_pars'
][
'TRIG_OUT'
]){
...
@@ -1173,8 +1175,7 @@ function init_cameras(){ // $page) { init can only be from default page as page
...
@@ -1173,8 +1175,7 @@ function init_cameras(){ // $page) { init can only be from default page as page
usleep
(
$GLOBALS
[
'camera_state_arr'
][
'max_frame_time'
]);
usleep
(
$GLOBALS
[
'camera_state_arr'
][
'max_frame_time'
]);
log_msg
(
"4.Trigger (should stop)
$i
:
\n
"
.
file_get_contents
(
'/sys/devices/soc0/elphel393-framepars@0/all_frames'
));
log_msg
(
"4.Trigger (should stop)
$i
:
\n
"
.
file_get_contents
(
'/sys/devices/soc0/elphel393-framepars@0/all_frames'
));
}
}
// Triggered input mode, not sure where input comes from
if
(
isset
(
$curl_data
))
{
// wait and collect responses
log_msg
(
" trig_out =
$trig_out
"
);
log_msg
(
" trig_out =
$trig_out
"
);
log_msg
(
" trig_period =
$trig_period
"
);
log_msg
(
" trig_period =
$trig_period
"
);
log_msg
(
"Remaining GLOBALS[trig_pars] = "
.
print_r
(
$GLOBALS
[
'trig_pars'
],
1
));
log_msg
(
"Remaining GLOBALS[trig_pars] = "
.
print_r
(
$GLOBALS
[
'trig_pars'
],
1
));
...
@@ -1207,8 +1208,16 @@ function init_cameras(){ // $page) { init can only be from default page as page
...
@@ -1207,8 +1208,16 @@ function init_cameras(){ // $page) { init can only be from default page as page
}
}
}
}
}
else
{
}
else
{
log_msg
(
'All done that could be done - maybe more input triggers are needed'
);
$trig_condition
=
$GLOBALS
[
'trig_pars'
][
'TRIG_CONDITION'
];
unset
(
$GLOBALS
[
'trig_pars'
][
'TRIG_CONDITION'
]);
//$frame_to_set = elphel_get_frame($GLOBALS['master_port']) + ELPHEL_CONST_FRAME_DEAFAULT_AHEAD;
//elphel_set_P_arr ($GLOBALS['master_port'], $GLOBALS['trig_pars'], $frame_to_set);
//elphel_set_P_value($GLOBALS['master_port'], ELPHEL_TRIG_CONDITION, $trig_condition, $frame_to_set+3);
elphel_set_P_arr
(
$GLOBALS
[
'master_port'
],
$GLOBALS
[
'trig_pars'
],
ELPHEL_CONST_FRAME_IMMED
,
ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC
);
elphel_set_P_value
(
$GLOBALS
[
'master_port'
],
ELPHEL_TRIG_CONDITION
,
$trig_condition
);
log_msg
(
'Independently started camera (3). If not master camera - it will wait for external triggers'
);
}
}
}
}
...
...
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