-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure that UI Blocks don't hold references to GR nodes after creation (i.e. once scheduler started). Exceptions are the drawable nodes (toolbar/plots), which are currently both part of the graph and also accessed from the UI.
- Loading branch information
1 parent
7df1b3d
commit ad725ac
Showing
24 changed files
with
324 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,29 @@ | ||
blocks: | ||
- name: FFT | ||
id: FFT | ||
id: gr::blocks::fft::FFT | ||
- name: sum sigs | ||
id: opendigitizer::Arithmetic | ||
- name: sine source 1 | ||
id: opendigitizer::SineSource | ||
parameters: | ||
frequency: 0.100000 | ||
- name: source for sink 1 | ||
id: sink_source | ||
- name: source for sink 2 | ||
id: sink_source | ||
- name: remote source 1 | ||
id: opendigitizer::RemoteSource | ||
parameters: | ||
remote_uri: https://localhost:8080/GnuRadio/Acquisition?channelNameFilter=test | ||
- name: sink 1 | ||
id: sink | ||
id: opendigitizer::DataSink | ||
- name: sink 2 | ||
id: sink | ||
id: opendigitizer::DataSink | ||
- name: sink 3 | ||
id: sink | ||
id: opendigitizer::DataSink | ||
- name: sink 4 | ||
id: sink | ||
id: opendigitizer::DataSink | ||
connections: | ||
- [sine source 1, 0, FFT, 0] | ||
- [FFT, 0, sink 1, 0] | ||
- [sine source 1, 0, sum sigs, 0] | ||
- [source for sink 1, 0, sum sigs, 1] | ||
- [FFT, 0, sum sigs, 1] | ||
- [sum sigs, 0, sink 2, 0] | ||
- [sine source 1, 0, sink 3, 0] | ||
- [remote source 1, 0, sink 4, 0] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -183,6 +183,7 @@ target_link_libraries( | |
gnuradio-algorithm | ||
gr-basic | ||
gr-fourier | ||
gr-testing | ||
fftw | ||
vir | ||
pmtv) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
add_library( | ||
app_header INTERFACE | ||
"fair_header.hpp" | ||
PopupMenu.hpp | ||
) | ||
app_header | ||
INTERFACE | ||
"fair_header.hpp" | ||
PopupMenu.hpp) | ||
target_include_directories(app_header INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}) | ||
target_link_libraries(app_header INTERFACE stb fmt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.