Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Conv TTL Blocking
Manage
Activity
Members
Labels
Plan
Issues
5
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
Conv TTL Blocking
Commits
e6f84c8c
Commit
e6f84c8c
authored
8 years ago
by
Projects
Browse files
Options
Downloads
Patches
Plain Diff
tests/pulse_rejection: use the SLOT parameter from ei2cdefine
parent
5ff3bc00
Branches
Branches containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
software/tests/pulse_rejection.py
+1
-1
1 addition, 1 deletion
software/tests/pulse_rejection.py
with
1 addition
and
1 deletion
software/tests/pulse_rejection.py
+
1
−
1
View file @
e6f84c8c
...
...
@@ -23,7 +23,7 @@ import ei2cdefine as cfg
address
=
cfg
.
HNAME
if
cfg
.
ENABLED
and
cfg
.
HNAME
else
raw_input
(
"
Hostname:
"
)
user
=
cfg
.
USER
if
cfg
.
ENABLED
and
cfg
.
USER
else
raw_input
(
"
User:
"
)
password
=
cfg
.
PWD
if
cfg
.
ENABLED
and
cfg
.
PWD
else
raw_input
(
"
Password:
"
)
slot
=
int
(
input
(
"
Slot number:
"
))
slot
=
cfg
.
SLOT
if
cfg
.
ENABLED
and
cfg
.
SLOT
else
int
(
input
(
"
Slot number:
"
))
cooldown_time
=
20
# number seconds of cool down time between tests
elma
=
Elma
(
address
,
user
,
password
)
...
...
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