Blame view

html/Oscilloscope/Global/3_Trigger/cmd_trigger_mode.php 217 Bytes
c825216f   lwadbled   feat(main.php): R...
1
2
3
4
5
6
7
8
  <?php
  	/* Commande Trigger Mode */
  	if(array_key_exists('trmd',$_POST)){
  		$trig=$_POST['trmd'];
  		shell_exec('lxi scpi -a '.$adresse.' "trmd '.$trig.'"');
  	}
  	$trmd=shell_exec('lxi scpi -a '.$adresse.' "trmd?"');
  ?>