Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
redpitaya-MCPHA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Günter Quast
redpitaya-MCPHA
Commits
e20db0e4
Commit
e20db0e4
authored
9 months ago
by
Guenter Quast
Browse files
Options
Downloads
Patches
Plain Diff
protected call to argparse, conditional import of numpy-append-array
parent
d514b83f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
redPoscdaq.py
+16
-8
16 additions, 8 deletions
redPoscdaq.py
with
16 additions
and
8 deletions
redPoscdaq.py
+
16
−
8
View file @
e20db0e4
#!/usr/bin/env python3
"""
r
p
Poscdaq: fast data acquistion using the oscilloscope client of the MCPHA
"""
r
ed
Poscdaq: fast data acquistion using the oscilloscope client of the MCPHA
application running on a RedPitaya FPGA board
When the network connection is established, the oscilloscope window
is activated in data-acquisition mode, i.e. restarted continously.
Optionally, triggered waveforms can be stored a file.
Contains a button to run the oscilloscope in daq mode, i.e. it is restarted
continously. If defined, data is eported to a callback function. A callback
class redP_mimocorb() implements an interface to the daq rinbuffer mimoCoRB.
Optionally, triggered waveforms can be stored a numpy binary file
(.npy format).
Code derived from mcpha.py by Pavel Demin
...
...
@@ -13,6 +14,8 @@
https://github.com/pavel-demin/red-pitaya-notes/releases/tag/20240204
"""
script_name
=
'
redPoscidaq.py
'
# Communication with server process is achieved via command codes:
# command(code, number, data) # number typically is channel number
#
...
...
@@ -49,10 +52,13 @@ import matplotlib
from
matplotlib.figure
import
Figure
from
multiprocessing
import
Event
from
npy_append_array
import
NpyAppendArray
from
mimocorb.buffer_control
import
rbPut
# !!! for conditional import from npy_append_array !!!
def
import_npy_append_array
():
global
NpyAppendArray
from
npy_append_array
import
NpyAppendArray
from
matplotlib.backends.backend_qt5agg
import
FigureCanvasQTAgg
as
FigureCanvas
from
matplotlib.backends.backend_qt5agg
import
NavigationToolbar2QT
as
NavigationToolbar
...
...
@@ -115,7 +121,7 @@ class rpControl(QMainWindow, Ui_MCPHA):
self
.
confd
=
{}
if
conf_dict
is
None
else
conf_dict
self
.
parse_confd
()
# get configuration from command line
if
conf_dict
is
None
:
if
os
.
path
.
split
(
sys
.
argv
[
0
])[
1
]
==
'
redPoscdaq.py
'
:
self
.
parse_args
()
self
.
callback
=
True
if
callback
is
not
None
else
False
...
...
@@ -239,6 +245,8 @@ class rpControl(QMainWindow, Ui_MCPHA):
self
.
trigger_slope
=
0
if
args
.
trigger_slope
==
'
rising
'
else
1
# other parameters
self
.
filename
=
args
.
file
if
self
.
filename
:
import_npy_append_array
()
def
get_physical_units
(
self
):
...
...
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