Commit 23533d6e authored by Andrey Filippov's avatar Andrey Filippov

more tweaking

parent ab9e5d99
html/* html/*
attic/* attic/*
.project /.project
.cproject /.cproject
.pydevproject /.pydevproject
.settings /.externalToolBuilders
*.directory /.settings
.directory
generated* generated*
sysroots sysroots
bitbake-logs bitbake-logs
\ No newline at end of file
PROGS = autocampars launch_php_script PROGS = autocampars launch_php_script
PHPSCRIPTS = autocampars.php PHPSCRIPTS = autocampars.php
SRCS = autocampars.c launch_php_script.c SRCS = autocampars.c launch_php_script.c
OBJS = $(SRC:.c=.o) #OBJS = $(SRC:.c=.o)
#OBJS = autocampars.o launch_php_script.o OBJS = autocampars.o launch_php_script.o
BINDIR = $(DESTDIR)/usr/bin/ BINDIR = $(DESTDIR)/usr/bin
SYSCONFDIR = $(DESTDIR)/etc/ SYSCONFDIR = $(DESTDIR)/etc
CONFDIR = $(SYSCONFDIR)/elphel393
DOCUMENTROOT = $(DESTDIR)/www/pages DOCUMENTROOT = $(DESTDIR)/www/pages
AUTOCAMPARS_PHP = /www/pages/autocampars.php
INSTALL = install INSTALL = install
INSTMODE = 0755 INSTMODE = 0755
INSTDOCS = 0644 INSTDOCS = 0644
OWN = -o root -g root OWN = -o root -g root
INCDIR = $(STAGING_DIR_HOST)/usr/include-uapi/elphel INCDIR = $(STAGING_DIR_HOST)/usr/include-uapi
CFLAGS += -Wall -I$(INCDIR) #CFLAGS += -Wall -I$(INCDIR)
CFLAGS += -Wall -I$(STAGING_DIR_HOST)/usr/include-uapi -D 'AUTOCAMPARS_PHP="$(AUTOCAMPARS_PHP)"'
all: $(PROGS) all: $(PROGS)
$(PROGS): $(OBJS) #$(PROGS): $(OBJS)
# $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@
autocampars: autocampars.o
$(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@
@echo "AUTOCAMPARS_PHP=$(AUTOCAMPARS_PHP)"
launch_php_script: launch_php_script.o
$(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ $(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@
install: $(PROGS)
install: $(PROGS) $(PHPSCRIPTS)
$(INSTALL) -d $(BINDIR) $(INSTALL) -d $(BINDIR)
$(INSTALL) -d $(DOCUMENTROOT) $(INSTALL) -d $(DOCUMENTROOT)
$(INSTALL) -d $(SYSCONFDIR) $(INSTALL) -d $(SYSCONFDIR)
$(INSTALL) -d $(CONFDIR)
$(INSTALL) $(OWN) -m $(INSTMODE) $(PROGS) $(BINDIR) $(INSTALL) $(OWN) -m $(INSTMODE) $(PROGS) $(BINDIR)
$(INSTALL) $(OWN) -m $(INSTMODE) $(PHPSCRIPTS) $(DOCUMENTROOT) $(INSTALL) $(OWN) -m $(INSTMODE) $(PHPSCRIPTS) $(DOCUMENTROOT)
......
/*!*************************************************************************** /*!***************************************************************************
*! FILE NAME : autocampars.c *! FILE NAME : autocampars.c
*! DESCRIPTION: Daemon to save/restore parameter (calls autocampars.php) *! DESCRIPTION: Daemon to save/restore parameter (calls autocampars.php)
*! This program is needed not to have an extra instance of *! This program is needed not to have an extra instance of
*! PHP (2+ MB) just waiting as a daemon. *! PHP (2+ MB) just waiting as a daemon.
*! Copyright (C) 2008 Elphel, Inc. *! Copyright (C) 2008 Elphel, Inc.
*! -----------------------------------------------------------------------------** *! -----------------------------------------------------------------------------**
*! This program is free software: you can redistribute it and/or modify *! This program is free software: you can redistribute it and/or modify
*! it under the terms of the GNU General Public License as published by *! it under the terms of the GNU General Public License as published by
*! the Free Software Foundation, either version 3 of the License, or *! the Free Software Foundation, either version 3 of the License, or
*! (at your option) any later version. *! (at your option) any later version.
*! *!
*! This program is distributed in the hope that it will be useful, *! This program is distributed in the hope that it will be useful,
*! but WITHOUT ANY WARRANTY; without even the implied warranty of *! but WITHOUT ANY WARRANTY; without even the implied warranty of
*! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*! GNU General Public License for more details. *! GNU General Public License for more details.
*! *!
*! You should have received a copy of the GNU General Public License *! You should have received a copy of the GNU General Public License
*! along with this program. If not, see <http://www.gnu.org/licenses/>. *! along with this program. If not, see <http://www.gnu.org/licenses/>.
*! -----------------------------------------------------------------------------** *! -----------------------------------------------------------------------------**
*! *!
*! $Log: autocampars.c,v $ *! $Log: autocampars.c,v $
*! Revision 1.2 2008/12/08 08:13:37 elphel *! Revision 1.2 2008/12/08 08:13:37 elphel
*! added one more error check *! added one more error check
*! *!
*! Revision 1.1.1.1 2008/11/27 20:04:01 elphel *! Revision 1.1.1.1 2008/11/27 20:04:01 elphel
*! *!
*! *!
*! Revision 1.4 2008/11/22 05:52:47 elphel *! Revision 1.4 2008/11/22 05:52:47 elphel
*! added TODO *! added TODO
*! *!
*! Revision 1.3 2008/11/18 07:37:10 elphel *! Revision 1.3 2008/11/18 07:37:10 elphel
*! snapshot *! snapshot
*! *!
*! Revision 1.2 2008/11/17 23:42:59 elphel *! Revision 1.2 2008/11/17 23:42:59 elphel
*! snapshot *! snapshot
*! *!
*! Revision 1.1 2008/11/17 06:41:20 elphel *! Revision 1.1 2008/11/17 06:41:20 elphel
*! 8.0.alpha18 - started autocampars - camera parameters save/restore/init manager *! 8.0.alpha18 - started autocampars - camera parameters save/restore/init manager
*! *!
*! *!
*/ */
#include <unistd.h> #include <unistd.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <signal.h> #include <signal.h>
#include <fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include <asm/elphel/c313a.h> #include <elphel/c313a.h>
#include <elphel/x393_devices.h>
#ifdef AUTOCAMPARS_PHP
#pragma message "content of AUTOCAMPARS_PHP: " AUTOCAMPARS_PHP
#else
#warning AUTOCAMPARS_PHP is NOT defined
#endif
int main (int argc, char *argv[]) { int main (int argc, char *argv[]) {
const char framepars_driver_name[]="/dev/frameparsall"; const char script_path[]= AUTOCAMPARS_PHP;
// const char php_path[]="/usr/local/sbin/php"; const char *framepars_driver_name[]={DEV393_PATH(DEV393_FRAMEPARS0), DEV393_PATH(DEV393_FRAMEPARS1),//"/dev/frameparsall";
const char script_path[]="/usr/html/autocampars.php"; DEV393_PATH(DEV393_FRAMEPARS2), DEV393_PATH(DEV393_FRAMEPARS3)};
int fd_fparmsall= open(framepars_driver_name, O_RDWR); int fd_fparmsall;
unsigned long write_data[4]; unsigned long write_data[4];
int rslt; int rslt;
char sport[10];
int port = 0;
if (argc <2){
ELP_FERR(fprintf(stderr, "Sensor porft not provided (%s)\n", argv[0]));
exit (1);
}
port = strtol(argv[1], NULL,10) & 3;
sprintf(sport,"--port=%d",port);
//DEV393_FRAMEPARS0
// const char php_path[]="/usr/local/sbin/php";
fd_fparmsall= open(framepars_driver_name[port], O_RDWR);
if (fd_fparmsall <0) { if (fd_fparmsall <0) {
ELP_FERR(fprintf(stderr, "Open failed: (%s)\n", framepars_driver_name)); ELP_FERR(fprintf(stderr, "Open failed: (%s)\n", framepars_driver_name[port]));
exit (1); exit (1);
} }
///TODO: Use it to re-running ccamftp.php ///TODO: Use it to re-running ccamftp.php
/// see if any arguments are provided. If they are - they are bit number, sleep time in seconds and command/arguments of an external program /// see if any arguments are provided. If they are - they are bit number, sleep time in seconds and command/arguments of an external program
/// to be launched. Usually - a php script, so it makes sense not to keep the php instance in memory if it is not used most of the time /// to be launched. Usually - a php script, so it makes sense not to keep the php instance in memory if it is not used most of the time
/// (done so for ccamftp.php) /// (done so for ccamftp.php)
/// ///
/// Daemon loop - waiting for being enabled, run autocampars.php /// Daemon loop - waiting for being enabled, run autocampars.php
/// NOTE: Requires sequencers and sensor to be running, to reset everything if stuck - use autocampars.php directly /// NOTE: Requires sequencers and sensor to be running, to reset everything if stuck - use autocampars.php directly
int pid; int pid;
while (1) { while (1) {
lseek(fd_fparmsall, LSEEK_DAEMON_FRAME+DAEMON_BIT_AUTOCAMPARS, SEEK_END); /// wait for autocampars bit to be enabled (let it sleep if not) lseek(fd_fparmsall, LSEEK_DAEMON_FRAME+DAEMON_BIT_AUTOCAMPARS, SEEK_END); /// wait for autocampars bit to be enabled (let it sleep if not)
...@@ -74,20 +92,20 @@ int main (int argc, char *argv[]) { ...@@ -74,20 +92,20 @@ int main (int argc, char *argv[]) {
write_data[3]= 0; write_data[3]= 0;
rslt=write(fd_fparmsall, write_data, sizeof(write_data)); rslt=write(fd_fparmsall, write_data, sizeof(write_data));
if (rslt < sizeof(write_data)) { if (rslt < sizeof(write_data)) {
ELP_FERR(fprintf(stderr, "Failed writing to %s\n", framepars_driver_name)); ELP_FERR(fprintf(stderr, "Failed writing to %s\n", framepars_driver_name[port]));
exit (1); exit (1);
} }
fprintf(stderr, "autocampars triggered\n"); fprintf(stderr, "autocampars triggered\n");
signal(SIGCHLD, SIG_IGN); // no zombies signal(SIGCHLD, SIG_IGN); // no zombies
//! do we need any fork at all if we now serve images to one client at a time? //! do we need any fork at all if we now serve images to one client at a time?
if (((pid=fork())) <0) { /// error if (((pid=fork())) <0) { /// error
ELP_FERR(fprintf(stderr, "fork() failed\n")); ELP_FERR(fprintf(stderr, "fork() failed\n"));
exit (1); exit (1);
} else if (pid == 0) { /// child } else if (pid == 0) { /// child
fflush(stdout); fflush(stdout);
fflush(stderr); fflush(stderr);
// rslt= execl(php_path, "-q", script_path, "", "--daemon", (char *) NULL); /// We do not need to pass any parameters here, but if we had to - first argument is lost (probably to "-q" in the script line 1 // rslt= execl(php_path, "-q", script_path, "", "--daemon", (char *) NULL); /// We do not need to pass any parameters here, but if we had to - first argument is lost (probably to "-q" in the script line 1
rslt= execl(script_path, "", "--daemon", (char *) NULL); /// We do not need to pass any parameters here, but if we had to - first argument is lost (probably to "-q" in the script line 1 rslt= execl(script_path, "", "--daemon", sport, (char *) NULL); /// We do not need to pass any parameters here, but if we had to - first argument is lost (probably to "-q" in the script line 1
ELP_FERR(fprintf(stderr, "execl failed, returned %d, errno=%d\n", rslt,errno)); ELP_FERR(fprintf(stderr, "execl failed, returned %d, errno=%d\n", rslt,errno));
_exit(2);/// comes here only if error _exit(2);/// comes here only if error
} // end of child process } // end of child process
......
#!/usr/local/sbin/php -q #!/usr/bin/env php -q
<?php <?php
/*! /*!
*! PHP script *! PHP script
...@@ -181,9 +181,10 @@ ...@@ -181,9 +181,10 @@
Revision 1.1 2008/11/17 06:41:20 elphel Revision 1.1 2008/11/17 06:41:20 elphel
8.0.alpha18 - started autocampars - camera parameters save/restore/init manager 8.0.alpha18 - started autocampars - camera parameters save/restore/init manager
CVSLOG; CVSLOG;
require 'i2c.inc'; /// to read 10359 info require 'i2c.inc'; /// to read 10359 info //TODO NC393 - update to read sensor port!
//main() //main()
$sensor_port = 0;
$p=strpos ($cvslog,"Revision"); $p=strpos ($cvslog,"Revision");
$version=strtok(substr($cvslog,$p+strlen("Revision"),20)," "); $version=strtok(substr($cvslog,$p+strlen("Revision"),20)," ");
// echo "<pre>"; // echo "<pre>";
...@@ -197,15 +198,61 @@ require 'i2c.inc'; /// to read 10359 info ...@@ -197,15 +198,61 @@ require 'i2c.inc'; /// to read 10359 info
$twoColumns=false; $twoColumns=false;
// $configPath= "/var/autocampars.xml"; // $configPath= "/var/autocampars.xml";
// $backupConfigPath="/var/autocampars.xml.backup"; // $backupConfigPath="/var/autocampars.xml.backup";
$configPath= "/etc/autocampars.xml"; // $configPath= "/etc/autocampars.xml";
$backupConfigPath="/etc/autocampars.xml.backup"; // $backupConfigPath="/etc/autocampars.xml.backup";
$logFilePath= "/var/log/autocampars.log"; $logFilePath= "/var/log/autocampars.log";
$m10359Path= "/var/state/10359"; /// used to select multisensor defaults // $m10359Path= "/var/state/10359"; /// used to select multisensor defaults
$sensor_state_file="/var/state/ctype"; // $sensor_state_file="/var/state/ctype";
$logFile= fopen($logFilePath,"a");
$configPaths= array("/etc/elphel393/autocampars0.xml",
"/etc/elphel393/autocampars1.xml",
"/etc/elphel393/autocampars2.xml",
"/etc/elphel393/autocampars3.xml");
$backupConfigPaths= array("/etc/elphel393/autocampars0.xml.backup",
"/etc/elphel393/autocampars1.xml.backup",
"/etc/elphel393/autocampars2.xml.backup",
"/etc/elphel393/autocampars3.xml.backup");
// FIXME: NC393 - use sysfs to read 10359 and sensor configuration
$m10359Paths= array("/var/state/10359.0",
"/var/state/10359.1",
"/var/state/10359.2",
"/var/state/10359.3"); /// used to select multisensor defaults
$sensor_state_files=array ("/var/state/ctype.0",
"/var/state/ctype.1",
"/var/state/ctype.2",
"/var/state/ctype.3");
$framepars_paths = array ("/dev/frameparsall0",
"/dev/frameparsall1",
"/dev/frameparsall2",
"/dev/frameparsall3");
/// $framepars_file=fopen("/dev/frameparsall","r");
$logFile= fopen($logFilePath,"a"); // common for all ports
// process program arguments tgo get sensor port:
foreach ( $_SERVER ['argv'] as $param ) {
if (substr ( $param, 0, 7 ) == "--port=") {
$param = substr ( $param, 7 );
if (strlen ( $param ) > 0)
$GLOBALS ['sensor_port'] = (myval ( $param )) & 3;
}
}
// Now - HTTP GET (may overwrite)
if (array_key_exists ( 'sensor_port', $_GET )) {
$sensor_port = (myval($_GET ['sensor_port'])) & 3;
}
$configPath= $configPaths [$sensor_port];
$backupConfigPath= $backupConfigPaths [$sensor_port];
$m10359Path= $m10359Paths [$sensor_port]; /// used to select multisensor defaults
$sensor_state_file= $sensor_state_files [$sensor_port];
$framepars_path = $framepars_files [$sensor_port];
$useDefaultPageNumber=15; $useDefaultPageNumber=15;
$protectedPage=0; /// change to -1 to enable saving to page 0 $protectedPage=0; /// change to -1 to enable saving to page 0
$needDetection= (elphel_get_P_value(ELPHEL_SENSOR)<=0); /// we need sensor detection to be started before we can read 10359 eeprom and so select default parameters $needDetection= (elphel_get_P_value($GLOBALS['sensor_port'],ELPHEL_SENSOR)<=0); /// we need sensor detection to be started before we can read 10359 eeprom and so select default parameters
// check load command // check load command
if($_GET['load'] != '') { if($_GET['load'] != '') {
$load_filename = $_GET['load']; $load_filename = $_GET['load'];
...@@ -301,14 +348,11 @@ require 'i2c.inc'; /// to read 10359 info ...@@ -301,14 +348,11 @@ require 'i2c.inc'; /// to read 10359 info
if (strlen($param)>0) $initPage=myval($param); if (strlen($param)>0) $initPage=myval($param);
if (($initPage<0) || ($initPage > $useDefaultPageNumber)) $initPage=$useDefaultPageNumber; if (($initPage<0) || ($initPage > $useDefaultPageNumber)) $initPage=$useDefaultPageNumber;
$init=true; $init=true;
// break;
} else if (substr($param,0,8)=="--daemon") { } else if (substr($param,0,8)=="--daemon") {
$daemon=true; $daemon=true;
// break;
} else if ($param=='--ignore-revision') { } else if ($param=='--ignore-revision') {
$config['version']=$version; $config['version']=$version;
saveRotateConfig($numBackups); saveRotateConfig($numBackups);
// break;
} }
} }
if (!$daemon && !$init) { if (!$daemon && !$init) {
...@@ -399,10 +443,10 @@ function sync2master($timeout=120,$min_frame_master=30) { ...@@ -399,10 +443,10 @@ function sync2master($timeout=120,$min_frame_master=30) {
if (count ($this_ip)!=4 ) return -1; if (count ($this_ip)!=4 ) return -1;
$master_ip=$this_ip[0].'.'.$this_ip[1].'.'.$this_ip[2].'.'.($this_ip[3]-$IP_shift+1); $master_ip=$this_ip[0].'.'.$this_ip[1].'.'.$this_ip[2].'.'.($this_ip[3]-$IP_shift+1);
$noaexp=array("DAEMON_EN"=>0,"EXPOS"=>1); $noaexp=array("DAEMON_EN"=>0,"EXPOS"=>1);
elphel_skip_frames(4); /// 3 here is minimum, otherwise DAEMON_EN is still 0 (after init itself) elphel_skip_frames($GLOBALS['sensor_port'],4); /// 3 here is minimum, otherwise DAEMON_EN is still 0 (after init itself)
$saved_autoexp=elphel_get_P_arr($noaexp); $saved_autoexp=elphel_get_P_arr($GLOBALS['sensor_port'],$noaexp);
elphel_set_P_arr($noaexp); elphel_set_P_arr($GLOBALS['sensor_port'],$noaexp);
elphel_skip_frames(4); /// to be sure exposure is applied elphel_skip_frames($GLOBALS['sensor_port'],4); /// to be sure exposure is applied
echo ('Synchronizing with '.$master_ip."\n"); echo ('Synchronizing with '.$master_ip."\n");
/// Make sure eth0 is up, otherwise wait for $timeout seconds and reboot /// Make sure eth0 is up, otherwise wait for $timeout seconds and reboot
$abort_time=time()+$timeout; $abort_time=time()+$timeout;
...@@ -411,7 +455,7 @@ function sync2master($timeout=120,$min_frame_master=30) { ...@@ -411,7 +455,7 @@ function sync2master($timeout=120,$min_frame_master=30) {
exec ('/usr/sbin/mii-diag eth0 --status >/dev/null',$output, $retval); exec ('/usr/sbin/mii-diag eth0 --status >/dev/null',$output, $retval);
if ($retval!=0) { if ($retval!=0) {
echo time().": waiting for eth0 to come up\n"; echo time().": waiting for eth0 to come up\n";
elphel_skip_frames(1); elphel_skip_frames($GLOBALS['sensor_port'],1);
} }
} }
// passthru ('/usr/sbin/mii-diag eth0 --status'); // passthru ('/usr/sbin/mii-diag eth0 --status');
...@@ -428,7 +472,7 @@ function sync2master($timeout=120,$min_frame_master=30) { ...@@ -428,7 +472,7 @@ function sync2master($timeout=120,$min_frame_master=30) {
$master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait $master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait
if (($master_frame===false) || ($master_frame<$min_frame_master)) { if (($master_frame===false) || ($master_frame<$min_frame_master)) {
echo time().": waiting for eth0 to come up\n"; echo time().": waiting for eth0 to come up\n";
elphel_skip_frames(1); elphel_skip_frames($GLOBALS['sensor_port'],1);
} }
} }
...@@ -438,24 +482,26 @@ function sync2master($timeout=120,$min_frame_master=30) { ...@@ -438,24 +482,26 @@ function sync2master($timeout=120,$min_frame_master=30) {
} }
$this_frame=elphel_get_frame(); $this_frame=elphel_get_frame($GLOBALS['sensor_port']);
echo 'Master frame='.$master_frame."\n"; echo 'Master frame='.$master_frame."\n";
echo 'This frame='.$this_frame."\n"; echo 'This frame='.$this_frame."\n";
$skip= (1+$hardware_mask + ($this_frame& $hardware_mask) - ($master_frame & $hardware_mask)) & $hardware_mask; $skip= (1+$hardware_mask + ($this_frame& $hardware_mask) - ($master_frame & $hardware_mask)) & $hardware_mask;
echo 'skip '.$skip." frames\n"; echo 'skip '.$skip." frames\n";
// FIXME: NC393 - replace
/*
if ($skip>0) { if ($skip>0) {
elphel_fpga_write($fpga_trig_period,0);/// stop trigger input elphel_fpga_write($fpga_trig_period,0);/// stop trigger input
for ($i=0;$i<$skip;$i++) $master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait for ($i=0;$i<$skip;$i++) $master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait
elphel_fpga_write($fpga_trig_period,elphel_get_P_value(ELPHEL_TRIG_PERIOD));/// restore trigger elphel_fpga_write($fpga_trig_period,elphel_get_P_value($GLOBALS['sensor_port'],ELPHEL_TRIG_PERIOD));/// restore trigger
} }*/
elphel_set_P_value(ELPHEL_THIS_FRAME,$master_frame+0); elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_THIS_FRAME,$master_frame+0);
// $master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait // $master_frame=file_get_contents('http://'.$master_ip.':8081/wframe)')+0; /// will wait
// $this_frame=elphel_get_frame(); // $this_frame=elphel_get_frame();
// echo "\nafter sync:\n"; // echo "\nafter sync:\n";
// echo 'Master frame='.$master_frame."\n"; // echo 'Master frame='.$master_frame."\n";
// echo 'This frame='.$this_frame."\n"; // echo 'This frame='.$this_frame."\n";
/// restore (auto)exposure /// restore (auto)exposure
elphel_set_P_arr($saved_autoexp); elphel_set_P_arr($GLOBALS['sensor_port'],$saved_autoexp);
// var_dump($saved_autoexp); // var_dump($saved_autoexp);
} }
...@@ -487,25 +533,25 @@ function get_eyesis_mode() { ...@@ -487,25 +533,25 @@ function get_eyesis_mode() {
return 0; return 0;
} }
function detectSensor() { function detectSensor() {
global $logFile; global $logFile, $framepars_path;
$maxWait=5.0; ///sec $maxWait=5.0; ///sec
$waitDaemons=5.0; /// Wait for daemons to stop (when disabled) before resetting frame number. $waitDaemons=5.0; /// Wait for daemons to stop (when disabled) before resetting frame number.
/// They should look at thei enable bit periodically and restart if the frame is /// They should look at thei enable bit periodically and restart if the frame is
/// the frame is not what they were expecting to be /// the frame is not what they were expecting to be
$sleepOnce=0.1; $sleepOnce=0.1;
/// Here trying full reset with zeroing the absolute frame number, setting all frame parameters to 0 and starting /// Here trying full reset with zeroing the absolute frame number, setting all frame parameters to 0 and starting
$framepars_file=fopen("/dev/frameparsall","r"); $framepars_file=fopen($framepars_path,"r");
///TODO: Improve sequence here so it will not depend on delays ///TODO: Improve sequence here so it will not depend on delays
fseek($framepars_file,ELPHEL_LSEEK_FRAMEPARS_INIT,SEEK_END); /// NOTE: resets all the senor parameters (tasklet control) fseek($framepars_file,ELPHEL_LSEEK_FRAMEPARS_INIT,SEEK_END); /// NOTE: resets all the senor parameters (tasklet control)
/// elphel_set_P_value(ELPHEL_SENSOR, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection /// elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_SENSOR, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection
echo "before reset - current frame=".elphel_get_frame()."\n"; echo "before reset - current frame=".elphel_get_frame($GLOBALS['sensor_port'])."\n";
// elphel_set_P_value(ELPHEL_SENSOR, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection // elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_SENSOR, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection
elphel_set_P_value(ELPHEL_SENSOR, 0x00, elphel_get_frame(), ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_SENSOR, 0x00, elphel_get_frame($GLOBALS['sensor_port']), ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);/// set sensor to 0 will start detection
fseek($framepars_file,ELPHEL_LSEEK_SENSORPROC, SEEK_END); /// In case the autoprocessing after parameter write will be disabled in the future fseek($framepars_file,ELPHEL_LSEEK_SENSORPROC, SEEK_END); /// In case the autoprocessing after parameter write will be disabled in the future
/// (normally parameters are processed at frame sync interrupts - not yet available) /// (normally parameters are processed at frame sync interrupts - not yet available)
fclose ($framepars_file); fclose ($framepars_file);
/// Sensor should be up and running. let's wait for up to $maxWait seconds /// Sensor should be up and running. let's wait for up to $maxWait seconds
for ($t=0; elphel_get_frame()==0; $t+=$sleepOnce) { for ($t=0; elphel_get_frame($GLOBALS['sensor_port'])==0; $t+=$sleepOnce) {
usleep ($sleepOnce*1000000); usleep ($sleepOnce*1000000);
if ($t>$maxWait) { if ($t>$maxWait) {
fwrite ($logFile,"Sensor failed to initialize at ".date("F j, Y, g:i a")."\n"); fwrite ($logFile,"Sensor failed to initialize at ".date("F j, Y, g:i a")."\n");
...@@ -524,20 +570,20 @@ function processInit($initPage, $needDetection=true) { ...@@ -524,20 +570,20 @@ function processInit($initPage, $needDetection=true) {
/// They should look at thei enable bit periodically and restart if the frame is /// They should look at thei enable bit periodically and restart if the frame is
/// the frame is not what they were expecting to be /// the frame is not what they were expecting to be
if (elphel_get_frame()>0) { if (elphel_get_frame($GLOBALS['sensor_port'])>0) {
echo "Current frame=".elphel_get_frame().", sleeping to give daemons a chance\n"; echo "Current frame=".elphel_get_frame($GLOBALS['sensor_port']).", sleeping to give daemons a chance\n";
elphel_set_P_value(ELPHEL_COMPRESSOR_RUN, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); /// turn compressor off elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_COMPRESSOR_RUN, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); /// turn compressor off
elphel_set_P_value(ELPHEL_DAEMON_EN, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); /// turn daemons off elphel_set_P_value($GLOBALS['sensor_port'],ELPHEL_DAEMON_EN, 0x00, 0, ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); /// turn daemons off
usleep ($waitDaemons*1000000); usleep ($waitDaemons*1000000);
echo "Current frame=".elphel_get_frame().", waking up, daemons should be dead already\n"; echo "Current frame=".elphel_get_frame($GLOBALS['sensor_port']).", waking up, daemons should be dead already\n";
} }
if ($needDetection) { if ($needDetection) {
if (!detectSensor()) RETURN -1; if (!detectSensor()) RETURN -1;
} }
echo "after reset - current frame=".elphel_get_frame()."\n"; echo "after reset - current frame=".elphel_get_frame($GLOBALS['sensor_port'])."\n";
// $page=setParsFromPage($initPage,0xffffffff,true); /// all parameters, init mode - treat all parameters as new, even when they are the same as current (0) // $page=setParsFromPage($initPage,0xffffffff,true); /// all parameters, init mode - treat all parameters as new, even when they are the same as current (0)
$page=setParsFromPage($initPage,0x1,true); ///only init parameters? $page=setParsFromPage($initPage,0x1,true); ///only init parameters?
echo "after setParsFromPage - current frame=".elphel_get_frame()."\n"; echo "after setParsFromPage - current frame=".elphel_get_frame($GLOBALS['sensor_port'])."\n";
return $page; return $page;
/*! /*!
Strange with autoexposure - for frame #006 it gets zero pixels in the histogram, 7 - 0x3fff Strange with autoexposure - for frame #006 it gets zero pixels in the histogram, 7 - 0x3fff
...@@ -550,7 +596,7 @@ frame 11 (0xb) - normal total_pixels=0x4c920 ...@@ -550,7 +596,7 @@ frame 11 (0xb) - normal total_pixels=0x4c920
function processDaemon() { function processDaemon() {
global $config, $useDefaultPageNumber, $protectedPage,$numBackups; global $config, $useDefaultPageNumber, $protectedPage,$numBackups;
$AUTOCAMPARS=elphel_get_P_arr(array("AUTOCAMPARS_CMD"=>null, "AUTOCAMPARS_GROUPS"=>null,"AUTOCAMPARS_PAGE"=>null)); $AUTOCAMPARS=elphel_get_P_arr($GLOBALS['sensor_port'],array("AUTOCAMPARS_CMD"=>null, "AUTOCAMPARS_GROUPS"=>null,"AUTOCAMPARS_PAGE"=>null));
// echo "processDaemon()\n"; // echo "processDaemon()\n";
// print_r($AUTOCAMPARS); // print_r($AUTOCAMPARS);
$page= myval($AUTOCAMPARS['AUTOCAMPARS_PAGE']); $page= myval($AUTOCAMPARS['AUTOCAMPARS_PAGE']);
...@@ -638,7 +684,11 @@ function processPost() { ...@@ -638,7 +684,11 @@ function processPost() {
///TODO: Make the contol page aware of stuck sensor (sleep 1, then 5)? and suggest init if frame is not changing ///TODO: Make the contol page aware of stuck sensor (sleep 1, then 5)? and suggest init if frame is not changing
function processGet() { function processGet() {
global $config,$twoColumns,$configPath,$version; global $config,$twoColumns,$configPath,$version, $sensor_port;
// New in NC393 - get sensor port from URL - moved to startup of the script
// if (array_key_exists('sensor_port',$_GET)) {
// $sensor_port = (int) $_GET['sensor_port'];
// }
if (array_key_exists('ignore-revision',$_GET) && ($version != $config['version'])) { if (array_key_exists('ignore-revision',$_GET) && ($version != $config['version'])) {
$config['version']=$version; $config['version']=$version;
saveRotateConfig($numBackups); saveRotateConfig($numBackups);
...@@ -660,7 +710,7 @@ WARN; ...@@ -660,7 +710,7 @@ WARN;
exit (1); exit (1);
} }
$page_title="Model 353 Camera Parameters save/restore"; $page_title="Model 393 Camera Parameters save/restore";
startPage($page_title, mainJavascript()); startPage($page_title, mainJavascript());
if ($twoColumns) printf ("<table><tr><td style='vertical-align: top'>\n"); if ($twoColumns) printf ("<table><tr><td style='vertical-align: top'>\n");
writeGroupsTable(); writeGroupsTable();
...@@ -852,7 +902,7 @@ function addGammas($pars) { ...@@ -852,7 +902,7 @@ function addGammas($pars) {
foreach ($gammas as $gamma_black=>$whatever) { foreach ($gammas as $gamma_black=>$whatever) {
$black=($gamma_black>>8) & 0xff; $black=($gamma_black>>8) & 0xff;
$gamma=($gamma_black & 0xff)*0.01; $gamma=($gamma_black & 0xff)*0.01;
elphel_gamma_add ($gamma, $black); elphel_gamma_add ($gamma, $black); // does not use $GLOBALS['sensor_port'],
} }
} }
...@@ -897,18 +947,18 @@ function setParsFromPage($page,$mask,$initmode=false) { ...@@ -897,18 +947,18 @@ function setParsFromPage($page,$mask,$initmode=false) {
if (isset($daemon_en['DAEMON_EN_CAMOGM'])) $daemon_en['DAEMON_EN'] |= $daemon_en['DAEMON_EN_CAMOGM']? 8:0; if (isset($daemon_en['DAEMON_EN_CAMOGM'])) $daemon_en['DAEMON_EN'] |= $daemon_en['DAEMON_EN_CAMOGM']? 8:0;
if (isset($daemon_en['DAEMON_EN_TEMPERATURE'])) $daemon_en['DAEMON_EN'] |= $daemon_en['DAEMON_EN_TEMPERATURE']?32:0; if (isset($daemon_en['DAEMON_EN_TEMPERATURE'])) $daemon_en['DAEMON_EN'] |= $daemon_en['DAEMON_EN_TEMPERATURE']?32:0;
} }
elphel_set_P_arr(array('COMPRESSOR_RUN'=>0,'DAEMON_EN'=>0),-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); elphel_set_P_arr($GLOBALS['sensor_port'],array('COMPRESSOR_RUN'=>0,'DAEMON_EN'=>0),-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);
elphel_skip_frames(2); elphel_skip_frames($GLOBALS['sensor_port'],2);
elphel_set_P_arr($parToSet,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); elphel_set_P_arr($GLOBALS['sensor_port'],$parToSet,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);
elphel_skip_frames(2); ///Adjust? elphel_skip_frames($GLOBALS['sensor_port'],2); ///Adjust?
elphel_set_P_arr($compressor_run,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); elphel_set_P_arr($GLOBALS['sensor_port'],$compressor_run,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);
echo "setting COMPRESSOR_RUN=".$compressor_run['COMPRESSOR_RUN']."\n"; echo "setting COMPRESSOR_RUN=".$compressor_run['COMPRESSOR_RUN']."\n";
elphel_skip_frames(4); ///Adjust? So streamer will have at least 2 good frames in buffer? elphel_skip_frames($GLOBALS['sensor_port'],4); ///Adjust? So streamer will have at least 2 good frames in buffer?
elphel_set_P_arr($daemon_en,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC); elphel_set_P_arr($GLOBALS['sensor_port'],$daemon_en,-1,ELPHEL_CONST_FRAMEPAIR_FORCE_NEWPROC);
echo "setting DAEMON_EN=";print_r($daemon_en);echo "\n"; echo "setting DAEMON_EN=";print_r($daemon_en);echo "\n";
// print_r($parToSet);echo "\n"; // print_r($parToSet);echo "\n";
} else { } else {
elphel_set_P_arr($parToSet); elphel_set_P_arr($GLOBALS['sensor_port'],$parToSet);
} }
return $page; return $page;
} }
...@@ -919,12 +969,12 @@ function readParsToPage($page) { ...@@ -919,12 +969,12 @@ function readParsToPage($page) {
if ($page==$useDefaultPageNumber) $page=$config['nextPage']; /// 0 is write protected if ($page==$useDefaultPageNumber) $page=$config['nextPage']; /// 0 is write protected
if ($page == $protectedPage) $page=findNextPage($page); if ($page == $protectedPage) $page=findNextPage($page);
// echo "\nbefore:";print_r($config); // echo "\nbefore:";print_r($config);
$config['paramSets'][$page]=elphel_get_P_arr($config['groups']); /// 'text' parameters will be just ignored $config['paramSets'][$page]=elphel_get_P_arr($GLOBALS['sensor_port'],$config['groups']); /// 'text' parameters will be just ignored
$config['paramSets'][$page]['comment']="Saved on ".date("F j, Y, g:i a"); $config['paramSets'][$page]['comment']="Saved on ".date("F j, Y, g:i a");
$config['paramSets'][$page]['timestamp']=time(); $config['paramSets'][$page]['timestamp']=time();
// echo "\nafter:";print_r($config); // echo "\nafter:";print_r($config);
$config['nextPage']=findNextPage($page); $config['nextPage']=findNextPage($page);
elphel_set_P_arr(array("AUTOCAMPARS_PAGE"=>$page+0)); /// will set some (3?) frames ahead so not yet available until waited enough elphel_set_P_arr($GLOBALS['sensor_port'],array("AUTOCAMPARS_PAGE"=>$page+0)); /// will set some (3?) frames ahead so not yet available until waited enough
// echo "Saved to page $page, result=$result\n"; // echo "Saved to page $page, result=$result\n";
return $page; return $page;
//date("F j, Y, g:i a") //date("F j, Y, g:i a")
...@@ -1068,7 +1118,7 @@ function calculateDefaultPhases(){ ...@@ -1068,7 +1118,7 @@ function calculateDefaultPhases(){
'MULTI_PHASE1'=>0, 'MULTI_PHASE1'=>0,
'MULTI_PHASE2'=>0, 'MULTI_PHASE2'=>0,
'MULTI_PHASE3'=>0); 'MULTI_PHASE3'=>0);
$phases=elphel_get_P_arr($phases); // get current values $phases=elphel_get_P_arr($GLOBALS['sensor_port'],$phases); // get current values
/**TODO: Here read and compare the 10359 (REV>=B) and 10338 (REV>=E), read other persistent parameters (set by /etc/fpga, defined in c313a.h, such as /**TODO: Here read and compare the 10359 (REV>=B) and 10338 (REV>=E), read other persistent parameters (set by /etc/fpga, defined in c313a.h, such as
#define G_CABLE_TIM (FRAMEPAR_GLOBALS + 7) /// Extra cable delay, signed ps) #define G_CABLE_TIM (FRAMEPAR_GLOBALS + 7) /// Extra cable delay, signed ps)
#define G_FPGA_TIM0 (FRAMEPAR_GLOBALS + 8) /// FPGA timing parameter 0 - difference between DCLK pad and DCM input, signed (ps) #define G_FPGA_TIM0 (FRAMEPAR_GLOBALS + 8) /// FPGA timing parameter 0 - difference between DCLK pad and DCM input, signed (ps)
...@@ -1102,7 +1152,7 @@ Do not forget 'global' :-) ...@@ -1102,7 +1152,7 @@ Do not forget 'global' :-)
if ($xml->model=="10338"){ if ($xml->model=="10338"){
$len = $xml->len; $len = $xml->len;
$DCM_STEP = 22; // ps/step $DCM_STEP = 22; // ps/step
$clk_period = 1000000000000.0/elphel_get_P_value(ELPHEL_CLK_SENSOR); $clk_period = 1000000000000.0/elphel_get_P_value($GLOBALS['sensor_port'],ELPHEL_CLK_SENSOR);
$cable_len_ps = $len*15;//15ps/mm $cable_len_ps = $len*15;//15ps/mm
$px_delay = $cable_len_ps; $px_delay = $cable_len_ps;
......
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?fileVersion 4.0.0?><cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage">
<storageModule moduleId="org.eclipse.cdt.core.settings">
<cconfiguration id="0.1294322758">
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="0.1294322758" moduleId="org.eclipse.cdt.core.settings" name="Default">
<externalSettings/>
<extensions>
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
<extension id="org.eclipse.cdt.core.VCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/>
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>
</extensions>
</storageModule>
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
<configuration buildProperties="" description="" id="0.1294322758" name="Default" parent="org.eclipse.cdt.build.core.prefbase.cfg">
<folderInfo id="0.1294322758." name="/" resourcePath="">
<toolChain id="org.eclipse.cdt.build.core.prefbase.toolchain.1108581264" name="No ToolChain" resourceTypeBasedDiscovery="false" superClass="org.eclipse.cdt.build.core.prefbase.toolchain">
<targetPlatform id="org.eclipse.cdt.build.core.prefbase.toolchain.1108581264.424127023" name=""/>
<builder arguments="apps-autocampars" command="${workspace_loc:/elphel-apps-autocampars/run_bitbake.sh}" enableCleanBuild="false" id="org.eclipse.cdt.build.core.settings.default.builder.1258366388" incrementalBuildTarget="-c compile -f" keepEnvironmentInBuildfile="false" managedBuildOn="false" name="Gnu Make Builder" superClass="org.eclipse.cdt.build.core.settings.default.builder"/>
<tool id="org.eclipse.cdt.build.core.settings.holder.libs.1885972775" name="holder for library settings" superClass="org.eclipse.cdt.build.core.settings.holder.libs"/>
<tool id="org.eclipse.cdt.build.core.settings.holder.2146200400" name="Assembly" superClass="org.eclipse.cdt.build.core.settings.holder">
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.463610725" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols">
<listOptionValue builtIn="false" value="DOCUMENT_ROOT=/www/pages"/>
<listOptionValue builtIn="false" value="AUTOCAMPARS_PHP=&quot;/www/pages/autocampars.php&quot;"/>
<listOptionValue builtIn="false" value="&quot;size_t=unsigned int&quot;"/>
</option>
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.951580355" languageId="org.eclipse.cdt.core.assembly" languageName="Assembly" sourceContentType="org.eclipse.cdt.core.asmSource" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/>
</tool>
<tool id="org.eclipse.cdt.build.core.settings.holder.858897943" name="GNU C++" superClass="org.eclipse.cdt.build.core.settings.holder">
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.643993596" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols">
<listOptionValue builtIn="false" value="DOCUMENT_ROOT=/www/pages"/>
<listOptionValue builtIn="false" value="AUTOCAMPARS_PHP=&quot;/www/pages/autocampars.php&quot;"/>
<listOptionValue builtIn="false" value="&quot;size_t=unsigned int&quot;"/>
</option>
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.1749320856" languageId="org.eclipse.cdt.core.g++" languageName="GNU C++" sourceContentType="org.eclipse.cdt.core.cxxSource,org.eclipse.cdt.core.cxxHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/>
</tool>
<tool id="org.eclipse.cdt.build.core.settings.holder.436601026" name="GNU C" superClass="org.eclipse.cdt.build.core.settings.holder">
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.1876868272" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols">
<listOptionValue builtIn="false" value="AUTOCAMPARS_PHP=&quot;/www/pages/autocampars.php&quot;"/>
<listOptionValue builtIn="false" value="&quot;size_t=unsigned int&quot;"/>
</option>
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.719627942" languageId="org.eclipse.cdt.core.gcc" languageName="GNU C" sourceContentType="org.eclipse.cdt.core.cSource,org.eclipse.cdt.core.cHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/>
</tool>
<tool id="org.eclipse.cdt.build.core.settings.holder.1911394126" name="LLVM bytecode assembly" superClass="org.eclipse.cdt.build.core.settings.holder">
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.1272169261" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols">
<listOptionValue builtIn="false" value="DOCUMENT_ROOT=/www/pages"/>
<listOptionValue builtIn="false" value="AUTOCAMPARS_PHP=&quot;/www/pages/autocampars.php&quot;"/>
<listOptionValue builtIn="false" value="&quot;size_t=unsigned int&quot;"/>
</option>
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.1321714537" languageId="org.eclipse.cdt.managedbuilder.llvm.ui.llvmAssembly" languageName="LLVM bytecode assembly" sourceContentType="org.eclipse.cdt.managedbuilder.llvm.ui.llvmAssemblySource" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/>
</tool>
<tool id="org.eclipse.cdt.build.core.settings.holder.690109893" name="UPC" superClass="org.eclipse.cdt.build.core.settings.holder">
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.143356828" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols">
<listOptionValue builtIn="false" value="DOCUMENT_ROOT=/www/pages"/>
<listOptionValue builtIn="false" value="AUTOCAMPARS_PHP=&quot;/www/pages/autocampars.php&quot;"/>
<listOptionValue builtIn="false" value="&quot;size_t=unsigned int&quot;"/>
</option>
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.984057989" languageId="org.eclipse.cdt.core.parser.upc.upc" languageName="UPC" sourceContentType="org.eclipse.cdt.core.parser.upc.upcSource" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/>
</tool>
</toolChain>
</folderInfo>
<sourceEntries>
<entry excluding="sysroots/elphel393/usr/bin|sysroots/elphel393/usr/share|sysroots/elphel393/usr/lib|sysroots/elphel393/usr/include|sysroots/x86_64-linux|sysroots/elphel393-tcbootstrap" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name=""/>
</sourceEntries>
</configuration>
</storageModule>
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>
</cconfiguration>
</storageModule>
<storageModule moduleId="cdtBuildSystem" version="4.0.0">
<project id="elphel-apps-autocampars.null.1069086801" name="elphel-apps-autocampars"/>
</storageModule>
<storageModule moduleId="scannerConfiguration">
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
<scannerConfigBuildInfo instanceId="0.1294322758">
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/>
</scannerConfigBuildInfo>
</storageModule>
<storageModule moduleId="org.eclipse.cdt.core.LanguageSettingsProviders"/>
<storageModule moduleId="refreshScope" versionNumber="2">
<configuration configurationName="Default">
<resource resourceType="PROJECT" workspacePath="/elphel-apps-autocampars"/>
</configuration>
</storageModule>
</cproject>
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>elphel-apps-autocampars</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.cdt.core.cnature</nature>
<nature>org.eclipse.cdt.core.ccnature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>
<nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>
</natures>
</projectDescription>
...@@ -36,9 +36,10 @@ ...@@ -36,9 +36,10 @@
#include <errno.h> #include <errno.h>
#include <sys/wait.h> #include <sys/wait.h>
#include <asm/elphel/c313a.h> #include <elphel/c313a.h>
#include <elphel/x393_devices.h>
int main (int argc, char *argv[]) { int main (int argc, char *argv[]) {
if (argc < 3) { if (argc < 4) {
printf (" This is a companion program that works with PHP scripts to make a daemon,\n" printf (" This is a companion program that works with PHP scripts to make a daemon,\n"
"conserving memory footprint when disabled.\n" "conserving memory footprint when disabled.\n"
"It waits for the the specified bit in the global daemon control word (P_DAEMON_EN)\n" "It waits for the the specified bit in the global daemon control word (P_DAEMON_EN)\n"
...@@ -48,18 +49,20 @@ int main (int argc, char *argv[]) { ...@@ -48,18 +49,20 @@ int main (int argc, char *argv[]) {
"when this bit is cleared) and launches the script again. That reduces memory usage\n" "when this bit is cleared) and launches the script again. That reduces memory usage\n"
"when the script is disabled - no need to keep PHP interpreter in teh memory (>2MB)\n\n" "when the script is disabled - no need to keep PHP interpreter in teh memory (>2MB)\n\n"
"Usage:\n" "Usage:\n"
"%s <bit_number> <command> [<parameter>...]\n",argv[0]); "%s <sensor_port> <bit_number> <command> [<parameter>...]\n",argv[0]);
exit (1); exit (1);
} }
int pid, status; int pid, status;
int en_bit=strtol(argv[1], NULL, 10); const char *framepars_driver_name[]={DEV393_PATH(DEV393_FRAMEPARS0), DEV393_PATH(DEV393_FRAMEPARS1),//"/dev/frameparsall";
if ((en_bit<0) || (en_bit>31)) {printf ("Invalid bit number %d (should be 0..31)\n", en_bit); exit (1);} DEV393_PATH(DEV393_FRAMEPARS2), DEV393_PATH(DEV393_FRAMEPARS3)};
int port = strtol(argv[1], NULL, 10) & 3;
const char framepars_driver_name[]="/dev/frameparsall"; int en_bit=strtol(argv[2], NULL, 10);
int fd_fparmsall= open(framepars_driver_name, O_RDONLY);
int rslt; int rslt;
int fd_fparmsall;
if ((en_bit<0) || (en_bit>31)) {printf ("Invalid bit number %d (should be 0..31)\n", en_bit); exit (1);}
fd_fparmsall= open(framepars_driver_name[port], O_RDONLY);
if (fd_fparmsall <0) { if (fd_fparmsall <0) {
ELP_FERR(fprintf(stderr, "Open failed: (%s)\n", framepars_driver_name)); ELP_FERR(fprintf(stderr, "Open failed: (%s)\n", framepars_driver_name[port]));
exit (1); exit (1);
} }
/// Daemon loop - waiting for being enabled, run script /// Daemon loop - waiting for being enabled, run script
...@@ -74,7 +77,7 @@ int main (int argc, char *argv[]) { ...@@ -74,7 +77,7 @@ int main (int argc, char *argv[]) {
} else if (pid == 0) { /// child } else if (pid == 0) { /// child
fflush(stdout); fflush(stdout);
fflush(stderr); fflush(stderr);
rslt= execv(argv[2], &argv[2]); /// script path, all parameters starting with the script path rslt= execv(argv[3], &argv[3]); /// script path, all parameters starting with the script path
ELP_FERR(fprintf(stderr, "execl failed, returned %d, errno=%d\n", rslt,errno)); ELP_FERR(fprintf(stderr, "execl failed, returned %d, errno=%d\n", rslt,errno));
_exit(2);/// comes here only if error _exit(2);/// comes here only if error
} /// Only parent will get below here } /// Only parent will get below here
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment