-
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.
* Implement GNU Radio acquisition and flow graph service * CI: Add gr-digitizers picoscope dependencies * Remove old acquisition and flowgraph mock workers * Enable unit testing * CI: Update to gcc13 and emscripten 3.1.4, Enable C++23, move to latest opencmw-cpp/graph-prototype * UI: Split default dashboard .ddd file into text components Use text files instead of .ddd here, to make it easier to edit and to have readable diffs. * Move acquisition and flow graph data structures to own lib Move them to a custom lib, to share them with the UI, and among different workers. * Improve emscripten support Enable threading and exceptions for emscripten. Add mimetypes and cors headers to the rest endpoint. Add the worker javascript to the rest endpoint. * Simplify poller handling The issue of the datasink creating pollers with finished=false after stop has been fixed in graph-prototype, so the logic here can be simplified. --------- Co-authored-by: Alexander Krimm <[email protected]>
- Loading branch information
1 parent
746473b
commit 7afc207
Showing
32 changed files
with
1,745 additions
and
640 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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
add_library(od_acquisition INTERFACE) | ||
|
||
target_include_directories(od_acquisition INTERFACE $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> | ||
$<INSTALL_INTERFACE:include/>) | ||
|
||
target_link_libraries(od_acquisition INTERFACE project_options project_warnings) | ||
set_target_properties(od_acquisition PROPERTIES PUBLIC_HEADER daq_api.hpp) |
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.