Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
MicroCART
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Distributed Autonomous Networked Control Lab
MicroCART
Commits
3b9837fb
Commit
3b9837fb
authored
7 years ago
by
burneykb
Browse files
Options
Downloads
Patches
Plain Diff
fixed nameing issues
parent
7a20d337
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
groundStation/src/cli/cli.c
+1
-1
1 addition, 1 deletion
groundStation/src/cli/cli.c
groundStation/src/cli/cli_nodes.c
+2
-5
2 additions, 5 deletions
groundStation/src/cli/cli_nodes.c
with
3 additions
and
6 deletions
groundStation/src/cli/cli.c
+
1
−
1
View file @
3b9837fb
...
...
@@ -231,6 +231,6 @@ int convert_to_id(struct backend_conn * conn, char **argv, struct convert_data *
}
}
}
frontend_free_nodedata
(
search_data
,
num_nodes
);
frontend_free_node
_
data
(
search_data
,
num_nodes
);
return
search_2
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
groundStation/src/cli/cli_nodes.c
+
2
−
5
View file @
3b9837fb
...
...
@@ -49,28 +49,25 @@ int cli_getnodes(struct backend_conn * conn, int argc, char ** argv) {
const
struct
graph_node_type
*
node_definition
=
blockDefs
[
node_data
[
i
].
type
];
printf
(
" {"
);
for
(
n
=
0
;
n
<
(
size_t
)
node_definition
->
n_inputs
;
++
n
)
{
printf
(
" %-5s "
,
node_definition
->
input_names
[
n
]);
}
printf
(
"} "
);
printf
(
" {"
);
for
(
n
=
0
;
n
<
(
size_t
)
node_definition
->
n_params
;
++
n
)
{
printf
(
" %s "
,
node_definition
->
param_names
[
n
]);
}
printf
(
"} "
);
printf
(
" {"
);
for
(
n
=
0
;
n
<
(
size_t
)
node_definition
->
n_outputs
;
++
n
)
{
printf
(
" %s "
,
node_definition
->
output_names
[
n
]);
}
printf
(
"}
\n
"
);
}
frontend_free_nodedata
(
node_data
,
num_nodes
);
frontend_free_node
_
data
(
node_data
,
num_nodes
);
return
0
;
}
...
...
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