Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ev3-toolbox-matlab
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mindstorms
ev3-toolbox-matlab
Commits
2b04e204
Commit
2b04e204
authored
5 years ago
by
Maximilian Schnabel
Browse files
Options
Downloads
Patches
Plain Diff
formatting
parent
d1ca0814
Branches
50-use-ubuntus-libhidapi
No related tags found
2 merge requests
!7
Keep going if mountpoint exists (persistent)
,
!6
Docs NXT compatibility
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
source/Motor.m
+8
-8
8 additions, 8 deletions
source/Motor.m
with
8 additions
and
8 deletions
source/Motor.m
+
8
−
8
View file @
2b04e204
...
...
@@ -769,14 +769,14 @@ classdef Motor < MaskedHandle & dynamicprops
p
.
parse
(
varargin
{:});
if
~
isempty
(
fieldnames
(
p
.
Unmatched
))
A
=
fieldnames
(
p
.
Unmatched
);
warn
=
'The following input parameters were invalid: '
;
warn
=
[
warn
A
{
1
}];
for
i
=
2
:
length
(
A
)
warn
=
[
warn
', '
A
{
i
}];
end
warning
(
warn
)
end
A
=
fieldnames
(
p
.
Unmatched
);
warn
=
'The following input parameters were invalid: '
;
warn
=
[
warn
A
{
1
}];
for
i
=
2
:
length
(
A
)
warn
=
[
warn
', '
A
{
i
}];
end
warning
(
warn
)
end
% Set properties
if
motor
.
init
...
...
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