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
a6df0acf
Commit
a6df0acf
authored
Aug 03, 2012
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup and refactor a little
parent
ee5e41bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
63 deletions
+49
-63
printcore.py
printrun/printcore.py
+49
-63
No files found.
printrun/printcore.py
View file @
a6df0acf
...
...
@@ -109,84 +109,70 @@ class printcore():
self
.
printer
.
setDTR
(
1
)
self
.
printer
.
setDTR
(
0
)
def
_listen
(
self
):
"""This function acts on messages from the firmware
"""
self
.
clear
=
True
if
self
.
printer
.
inWaiting
():
# flush receive buffer
self
.
printer
.
read
(
self
.
printer
.
inWaiting
())
while
not
self
.
printer
.
inWaiting
():
# wait for new data to read
time
.
sleep
(
0.5
)
if
(
not
self
.
online
and
not
self
.
printing
):
# send M105 to initiate connection
self
.
_send
(
"M105"
)
while
(
True
):
if
self
.
stop_read_thread
:
return
if
(
not
self
.
printer
or
not
self
.
printer
.
isOpen
):
break
def
_readline
(
self
):
try
:
line
=
self
.
printer
.
readline
()
line
=
self
.
printer
.
readline
()
return
line
except
SelectError
,
e
:
if
'Bad file descriptor'
in
e
.
args
[
1
]:
print
"Can't read from printer (disconnected?)."
break
return
None
else
:
raise
except
SerialException
,
e
:
print
"Can't read from printer (disconnected?)."
break
return
None
except
OSError
,
e
:
print
"Can't read from printer (disconnected?)."
break
return
None
if
(
len
(
line
)
>
1
):
self
.
log
+=
[
line
]
if
self
.
recvcb
is
not
None
:
try
:
self
.
recvcb
(
line
)
except
:
pass
if
self
.
loud
:
print
"RECV: "
,
line
.
rstrip
()
if
(
line
.
startswith
(
'DEBUG_'
)):
def
_listen
(
self
):
"""This function acts on messages from the firmware
"""
self
.
clear
=
True
if
not
self
.
printing
:
self
.
_send
(
"M105"
)
time
.
sleep
(
1
)
while
not
self
.
stop_read_thread
and
self
.
printer
and
self
.
printer
.
isOpen
():
line
=
self
.
_readline
()
if
line
==
None
:
break
if
len
(
line
)
>
1
:
self
.
log
.
append
(
line
)
if
self
.
recvcb
:
try
:
self
.
recvcb
(
line
)
except
:
pass
if
self
.
loud
:
print
"RECV: "
,
line
.
rstrip
()
if
line
.
startswith
(
'DEBUG_'
):
continue
if
(
line
.
startswith
(
tuple
(
self
.
greetings
))
or
line
.
startswith
(
'ok'
)
):
self
.
clear
=
True
if
(
line
.
startswith
(
tuple
(
self
.
greetings
))
or
line
.
startswith
(
'ok'
)
or
"T:"
in
line
)
:
if
line
.
startswith
(
tuple
(
self
.
greetings
))
or
line
.
startswith
(
'ok'
):
self
.
clear
=
True
if
line
.
startswith
(
tuple
(
self
.
greetings
))
or
line
.
startswith
(
'ok'
)
or
"T:"
in
line
:
if
(
not
self
.
online
or
line
.
startswith
(
tuple
(
self
.
greetings
)))
and
self
.
onlinecb
is
not
None
:
try
:
self
.
onlinecb
()
except
:
pass
self
.
online
=
True
if
(
line
.
startswith
(
'ok'
)):
try
:
self
.
onlinecb
()
except
:
pass
self
.
online
=
True
if
line
.
startswith
(
'ok'
):
#self.resendfrom=-1
#put temp handling here
if
"T:"
in
line
and
self
.
tempcb
is
not
None
:
try
:
self
.
tempcb
(
line
)
except
:
pass
#callback for temp, status, whatever
elif
(
line
.
startswith
(
'Error'
)):
try
:
self
.
tempcb
(
line
)
except
:
pass
elif
line
.
startswith
(
'Error'
):
if
self
.
errorcb
is
not
None
:
try
:
self
.
errorcb
(
line
)
except
:
pass
#callback for errors
pass
try
:
self
.
errorcb
(
line
)
except
:
pass
if
line
.
lower
()
.
startswith
(
"resend"
)
or
line
.
startswith
(
"rs"
):
try
:
toresend
=
int
(
line
.
replace
(
"N:"
,
" "
)
.
replace
(
"N"
,
" "
)
.
replace
(
":"
,
" "
)
.
split
()[
-
1
])
toresend
=
int
(
line
.
replace
(
"N:"
,
" "
)
.
replace
(
"N"
,
" "
)
.
replace
(
":"
,
" "
)
.
split
()[
-
1
])
except
:
if
line
.
startswith
(
"rs"
):
toresend
=
int
(
line
.
split
()[
1
])
self
.
resendfrom
=
toresend
self
.
clear
=
True
self
.
clear
=
True
#callback for disconnect
toresend
=
int
(
line
.
split
()[
1
])
self
.
resendfrom
=
toresend
self
.
clear
=
True
self
.
clear
=
True
def
_checksum
(
self
,
command
):
return
reduce
(
lambda
x
,
y
:
x
^
y
,
map
(
ord
,
command
))
...
...
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