Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
167470e6
Commit
167470e6
authored
Nov 16, 2011
by
Duane Johnson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a try/except block around readline so that disconnection does not yield a traceback.
parent
440a5ca5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
printcore.py
printcore.py
+10
-1
No files found.
printcore.py
View file @
167470e6
#!/usr/bin/env python
from
serial
import
Serial
from
threading
import
Thread
from
select
import
error
as
SelectError
import
time
import
sys
...
...
@@ -76,7 +77,15 @@ class printcore():
while
(
True
):
if
(
not
self
.
printer
or
not
self
.
printer
.
isOpen
):
break
try
:
line
=
self
.
printer
.
readline
()
except
SelectError
,
e
:
if
'Bad file descriptor'
in
e
.
args
[
1
]:
print
"Can't read from printer (disconnected?)."
break
else
:
raise
if
(
len
(
line
)
>
1
):
self
.
log
+=
[
line
]
if
self
.
recvcb
is
not
None
:
...
...
Write
Preview
Markdown
is supported
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