Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elphel-apps-camogm
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-camogm
Commits
7643fa8a
Commit
7643fa8a
authored
May 08, 2019
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added tiff to camogmgui
parent
ce5e176f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
.gitignore
.gitignore
+4
-1
camogmgui.php
src/camogmgui/camogmgui.php
+5
-1
No files found.
.gitignore
View file @
7643fa8a
...
...
@@ -20,4 +20,7 @@ including.lst
doxygen.tag
/image
/scripts
/html
\ No newline at end of file
/html
/src/camogm_fifo_reader
/src/camogm_fifo_writer
\ No newline at end of file
src/camogmgui/camogmgui.php
View file @
7643fa8a
...
...
@@ -518,7 +518,11 @@
<?php
for
(
$i
=
0
;
$i
<
$sensor_ports
;
$i
++
)
{
echo
"<td id=
\"
ajax_qual
\"
>"
;
echo
elphel_get_P_value
(
$i
,
ELPHEL_QUALITY
)
.
" %"
;
if
(
elphel_get_P_value
(
$i
,
ELPHEL_QUALITY
)
==
15
){
// TIFF
echo
"TIFF"
.
elphel_get_P_value
(
$i
,
ELPHEL_BITS
);
}
else
{
echo
elphel_get_P_value
(
$i
,
ELPHEL_QUALITY
)
.
" %"
;
}
echo
"</td>"
;
}
?>
...
...
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