Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
imagej-elphel
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
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
imagej-elphel
Commits
1c788762
Commit
1c788762
authored
Nov 26, 2016
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more debugging
parent
86bd6dcd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
CalibrationHardwareInterface.java
src/main/java/CalibrationHardwareInterface.java
+3
-1
No files found.
src/main/java/CalibrationHardwareInterface.java
View file @
1c788762
...
...
@@ -782,12 +782,14 @@ public class CalibrationHardwareInterface {
if
(
probeCameraState
(
chn
))
{
numOnline
++;
printTiming
(
"===== probing channel "
+
chn
);
boolean
single_no_mux
=
(!
this
.
sensorPresent
[
chn
][
0
]
&&
!
this
.
sensorPresent
[
chn
][
1
]
&&
!
this
.
sensorPresent
[
chn
][
2
]);
if
(
this
.
debugLevel
>
1
)
System
.
out
.
println
(
"Frame number: "
+
this
.
cameraFrameNumber
[
chn
]+
", Trigger mode:"
+(
this
.
triggeredMode
[
chn
]?
"ex"
:
"in"
)+
"ternal, "
+
" sensors attached:"
+(
this
.
sensorPresent
[
chn
][
0
]?
"1 "
:
""
)+(
this
.
sensorPresent
[
chn
][
1
]?
"2 "
:
""
)+(
this
.
sensorPresent
[
chn
][
2
]?
"3 "
:
""
)+
(
(!
this
.
sensorPresent
[
chn
][
0
]
&&
!
this
.
sensorPresent
[
chn
][
1
]
&&
!
this
.
sensorPresent
[
chn
][
2
])
?
"single-sensor, no multiplexer"
:
""
)
(
single_no_mux
?
"single-sensor, no multiplexer"
:
""
)
);
for
(
int
i
=
0
;
i
<
this
.
sensorPresent
[
chn
].
length
;
i
++)
if
(
this
.
sensorPresent
[
chn
][
i
])
numSensors
++;
if
(
single_no_mux
)
numSensors
++;
}
else
{
if
(
this
.
debugLevel
>
1
)
System
.
out
.
println
(
"Camera did not respond"
);
}
...
...
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