Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tempus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Show more breadcrumbs
karaboDevices
tempus
Commits
700a54aa
Commit
700a54aa
authored
1 month ago
by
Björn Senfftleben
Browse files
Options
Downloads
Patches
Plain Diff
make dacs file a parameter
parent
c85f63b8
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tempus/Tempus.py
+10
-1
10 additions, 1 deletion
src/tempus/Tempus.py
with
10 additions
and
1 deletion
src/tempus/Tempus.py
+
10
−
1
View file @
700a54aa
...
@@ -233,7 +233,7 @@ class Tempus(Device):
...
@@ -233,7 +233,7 @@ class Tempus(Device):
# os.system(f'{self.CFG_DIR}/B3_timing_dacs.py') cannot be used,
# os.system(f'{self.CFG_DIR}/B3_timing_dacs.py') cannot be used,
# as the script accesses the mytpx4 instance
# as the script accesses the mytpx4 instance
await
self
.
send_command
(
await
self
.
send_command
(
f
"
exec(open(
'
{
self
.
CFG_DIR
}
/
B3_timing_dacs.py
'
).read())
"
)
f
"
exec(open(
'
{
self
.
CFG_DIR
}
/
{
self
.
dacsFile
.
value
}
'
).read())
"
)
await
self
.
send_command
(
await
self
.
send_command
(
f
"
mytpx4.setDAC(
'
DAC_Vthreshold
'
,
{
self
.
vthreshold
.
value
}
)
"
)
f
"
mytpx4.setDAC(
'
DAC_Vthreshold
'
,
{
self
.
vthreshold
.
value
}
)
"
)
await
self
.
send_command
(
await
self
.
send_command
(
...
@@ -338,6 +338,15 @@ class Tempus(Device):
...
@@ -338,6 +338,15 @@ class Tempus(Device):
defaultValue
=
100
,
defaultValue
=
100
,
allowedStates
=
{
State
.
INIT
,
State
.
ON
})
allowedStates
=
{
State
.
INIT
,
State
.
ON
})
@String
(
displayedName
=
"
DACS py File
"
,
defaultValue
=
"
B3_timing_dacs.py
"
,
allowedStates
=
{
State
.
INIT
,
State
.
ON
})
async
def
dacsFile
(
self
,
value
):
self
.
dacsFile
=
value
# if self.state not in (State.UNKNOWN, State.ERROR):
# self.state = State.INIT # force re-initialization
@String
(
@String
(
displayedName
=
"
Equalisation npy File
"
,
displayedName
=
"
Equalisation npy File
"
,
defaultValue
=
"
B3_equalisation_HV100.npy
"
,
defaultValue
=
"
B3_equalisation_HV100.npy
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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