Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sfp-plus-i2c
Manage
Activity
Members
Labels
Plan
Issues
9
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
sfp-plus-i2c
Commits
fa1de65b
Commit
fa1de65b
authored
7 years ago
by
Vincent van Beveren
Browse files
Options
Downloads
Patches
Plain Diff
Fixed read time-out when cloning
parent
69df5429
Branches
Branches containing commit
Tags
v0.7.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sw/jsfp/src/nl/nikhef/sfp/ddmi/DataSource.java
+14
-1
14 additions, 1 deletion
sw/jsfp/src/nl/nikhef/sfp/ddmi/DataSource.java
sw/safaripark/src/nl/nikhef/safaripark/dolly/DollyModel.java
+1
-1
1 addition, 1 deletion
sw/safaripark/src/nl/nikhef/safaripark/dolly/DollyModel.java
with
15 additions
and
2 deletions
sw/jsfp/src/nl/nikhef/sfp/ddmi/DataSource.java
+
14
−
1
View file @
fa1de65b
...
...
@@ -129,7 +129,20 @@ public abstract class DataSource {
}
// System.out.printf("Rescaling write, old-off=%d new-off=%d old-len=%d new-len=%d\n", off, nOff, data.length, nLen);
byte
[]
newData
=
read
(
ctx
,
nOff
,
nLen
);
byte
[]
newData
=
null
;
for
(
int
retry
=
0
;
retry
<
MAX_RETRIES
;
retry
++)
{
newData
=
read
(
ctx
,
nOff
,
nLen
);
if
(
newData
!=
null
)
break
;
try
{
Thread
.
sleep
(
10
);
}
catch
(
InterruptedException
e
)
{
}
}
if
(
newData
==
null
)
{
throw
new
RuntimeException
(
"Failed to cache EEPROM data"
);
}
System
.
arraycopy
(
data
,
0
,
newData
,
err
,
data
.
length
);
off
=
nOff
;
...
...
This diff is collapsed.
Click to expand it.
sw/safaripark/src/nl/nikhef/safaripark/dolly/DollyModel.java
+
1
−
1
View file @
fa1de65b
...
...
@@ -254,7 +254,7 @@ public class DollyModel implements SFPDeviceListener, SFPProviderListener {
DDMIValue
v
=
_selectedValues
.
get
(
_counter
);
LOG
.
info
(
"Copying value "
+
v
.
get
Label
());
LOG
.
info
(
"Copying value "
+
v
.
get
Name
());
byte
[]
value
;
try
{
value
=
_vg
.
getValue
(
v
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment