-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support all property types & architechture rework #11
Conversation
app/ref_app.cpp
Outdated
// Start streaming openDAQ OpcUa server | ||
instance.addServer("openDAQ OpcUa", nullptr); | ||
|
||
auto device = instance.getRootDevice(); | ||
|
||
JetServer myJet = JetServer(device); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we not use instance.addServer("jet", nullptr) and then it starts running.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because JetModule is not an openDAQ module. This is a separate library which mimics an openDAQ module. We have to align whether we want JetModule within openDAQ or we are going to keep to as a separate library.
include/jet_server.h
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We had a reivew session and we conclude the feedback on this confluence page: https://blueberrydaq.atlassian.net/wiki/spaces/B/pages/460685326/501-3-6+Jet+Module
This PR introduces following changes: