Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Alberto Ruiz Garcia
Firmware
Commits
73b787a8
Commit
73b787a8
authored
12 years ago
by
Andrew Tridgell
Browse files
Options
Downloads
Patches
Plain Diff
serial: fixed up FIONREAD and FIONWRITE
the device ioctl returns -ENOTTY when it hasn't handled the command
parent
3916230d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nuttx/drivers/serial/serial.c
+12
-4
12 additions, 4 deletions
nuttx/drivers/serial/serial.c
with
12 additions
and
4 deletions
nuttx/drivers/serial/serial.c
+
12
−
4
View file @
73b787a8
...
...
@@ -660,9 +660,11 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
int
ret
=
dev
->
ops
->
ioctl
(
filep
,
cmd
,
arg
);
/* Append any higher level TTY flags */
if
(
ret
==
OK
)
/*
the device ioctl() handler returns -ENOTTY when it doesn't know
how to handle the command. Check if we can handle it here.
*/
if
(
ret
==
-
ENOTTY
)
{
switch
(
cmd
)
{
...
...
@@ -686,7 +688,9 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
irqrestore
(
state
);
*
(
int
*
)
arg
=
count
;
ret
=
0
;
}
break
;
case
FIONWRITE
:
{
...
...
@@ -695,7 +699,7 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
/* determine the number of bytes free in the buffer */
if
(
dev
->
xmit
.
head
<
=
dev
->
xmit
.
tail
)
if
(
dev
->
xmit
.
head
<
dev
->
xmit
.
tail
)
{
count
=
dev
->
xmit
.
tail
-
dev
->
xmit
.
head
-
1
;
}
...
...
@@ -707,7 +711,9 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
irqrestore
(
state
);
*
(
int
*
)
arg
=
count
;
ret
=
0
;
}
break
;
#ifdef CONFIG_SERIAL_TERMIOS
case
TCGETS
:
...
...
@@ -725,6 +731,7 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
termiosp
->
c_iflag
=
dev
->
tc_iflag
;
termiosp
->
c_oflag
=
dev
->
tc_oflag
;
termiosp
->
c_lflag
=
dev
->
tc_lflag
;
ret
=
0
;
}
break
;
...
...
@@ -744,6 +751,7 @@ static int uart_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
dev
->
tc_iflag
=
termiosp
->
c_iflag
;
dev
->
tc_oflag
=
termiosp
->
c_oflag
;
dev
->
tc_lflag
=
termiosp
->
c_lflag
;
ret
=
0
;
}
break
;
...
...
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