-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/examples v0.6 #6
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
base: main
Are you sure you want to change the base?
Conversation
# Conflicts: # examples/4_filter_and_read_last_value_of_signal.c # examples/6_read_with_formatted_timestamps.c # examples/util_headers/daq_utils.h
misc: Added skeleton structure for application final iteration
It now displays the tree structure of the connected simulator
# Conflicts: # examples/4_filter_and_read_last_value_of_signal.c # examples/6_read_with_formatted_timestamps.c # examples/util_headers/daq_utils.h
It now displays the tree structure of the connected simulator # Conflicts: # examples/2_0_tree_traversal.c
# Conflicts: # examples/CMakeLists.txt
tomaz-cvetko
left a comment
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.
Starting to look really clean, but I think we can make it a bit more polished.
tomaz-cvetko
left a comment
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.
The review comments have been addressed, looks good to me.
JakaMohorko
left a comment
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.
Few minor comments that should be addressed before merge.
| switch (compType) | ||
| { | ||
| case DaqDevice: | ||
| printDaqDevice(baseObject, indent + 1); |
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.
This function doesn't print "parent line plus indented children". So it should just pass on the indent that is given. (no +1).
Tree traversal example completed.