Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Pfeiffer, Götz
MultiCAN
Commits
07487640
Commit
07487640
authored
Nov 11, 2019
by
Franksen, Benjamin
Browse files
fix ellsiConfigPortDef (it takes 4 arguments, not 3)
parent
d267469e
Changes
1
Hide whitespace changes
Inline
Side-by-side
mCANSupport/scan_iocsh.c
View file @
07487640
...
...
@@ -37,7 +37,7 @@ static const iocshArg ellsiConfigPortArg3 = { "baudrate", iocshArgInt };
static
const
iocshArg
*
const
ellsiConfigPortArgs
[]
=
{
&
ellsiConfigPortArg0
,
&
ellsiConfigPortArg1
,
&
ellsiConfigPortArg2
,
&
ellsiConfigPortArg3
};
static
const
iocshFuncDef
ellsiConfigPortDef
=
{
"ellsiConfigPort"
,
3
,
ellsiConfigPortArgs
};
static
const
iocshFuncDef
ellsiConfigPortDef
=
{
"ellsiConfigPort"
,
4
,
ellsiConfigPortArgs
};
static
void
ellsiConfigPortCall
(
const
iocshArgBuf
*
args
)
{
ellsiConfigPort
(
args
[
0
].
ival
,
args
[
1
].
sval
,
args
[
2
].
ival
,
args
[
3
].
ival
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment