Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
serial2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
serial2
Commits
3a4e897d
Commit
3a4e897d
authored
1 year ago
by
Alessio Igor Bogani
Browse files
Options
Downloads
Patches
Plain Diff
Add a sleep if write() fails immediately
parent
a26c877c
No related branches found
Branches containing commit
Tags
1.2.0
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Serial2.cpp
+15
-7
15 additions, 7 deletions
src/Serial2.cpp
with
15 additions
and
7 deletions
src/Serial2.cpp
+
15
−
7
View file @
3a4e897d
...
...
@@ -535,7 +535,7 @@ void Serial2::write(const Tango::DevVarCharArray *argin)
DEBUG_STREAM
<<
"Serial2::Write() - "
<<
device_name
<<
std
::
endl
;
/*----- PROTECTED REGION ID(Serial2::write) ENABLED START -----*/
check_init
();
char
*
argin_data
=
new
char
[
argin
->
length
()
];
for
(
unsigned
int
i
=
0
;
i
<
argin
->
length
();
++
i
)
{
...
...
@@ -559,14 +559,19 @@ void Serial2::write(const Tango::DevVarCharArray *argin)
{
delete
argin_data
;
string
error_mesg
=
"Connection refused"
;
close
();
open
();
string
error_mesg
=
"Connection refused"
;
DEBUG_STREAM
<<
error_mesg
<<
endl
;
set_state
(
Tango
::
FAULT
);
set_status
(
error_mesg
);
sleep
(
tout
.
tv_sec
);
usleep
(
tout
.
tv_usec
);
timerclear
(
&
tout
);
Tango
::
Except
::
throw_exception
(
""
,
error_mesg
,
"Serial2::write()"
);
...
...
@@ -613,11 +618,12 @@ void Serial2::write(const Tango::DevVarCharArray *argin)
if
(
(
bytes_total
-
output_queue_length
())
!=
bytes_to_write
)
{
string
error_mesg
=
"Unable to send request to device"
;
close
();
open
();
string
error_mesg
=
"Unable to send request to device"
;
DEBUG_STREAM
<<
error_mesg
<<
endl
;
set_state
(
Tango
::
FAULT
);
set_status
(
error_mesg
);
...
...
@@ -986,9 +992,11 @@ bool Serial2::read(timeval *tv)
close
();
open
();
DEBUG_STREAM
<<
"Server shutting down"
<<
endl
;
string
error_mesg
=
"Server shutting down"
;
DEBUG_STREAM
<<
error_mesg
<<
endl
;
set_state
(
Tango
::
FAULT
);
set_status
(
"Server shutting down"
);
set_status
(
error_mesg
);
sleep
(
tv
->
tv_sec
);
usleep
(
tv
->
tv_usec
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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