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
244350fe
Commit
244350fe
authored
Nov 27, 2011
by
Kliment Yanev
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into experimental
parents
97af7725
f7e14bf7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
printcore.py
printcore.py
+10
-1
pronsole.py
pronsole.py
+3
-3
No files found.
printcore.py
View file @
244350fe
#!/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
line
=
self
.
printer
.
readline
()
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
:
...
...
pronsole.py
View file @
244350fe
...
...
@@ -94,7 +94,7 @@ def estimate_duration(g):
feedrate
=
0
X_last_position
=
0
Y_last_position
=
0
for
i
in
g
:
for
i
.
split
(
";"
)[
0
]
in
g
:
if
"G1"
in
i
and
(
"X"
in
i
or
"Y"
in
i
or
"F"
in
i
or
"E"
in
i
):
parts
=
i
.
split
(
" "
)
X
=
get_coordinate_value
(
"X"
,
parts
[
1
:])
...
...
@@ -812,14 +812,14 @@ class pronsole(cmd.Cmd):
print
"! os.listdir('.')"
def
default
(
self
,
l
):
if
(
l
[
0
]
==
'M'
or
l
[
0
]
==
"G"
):
if
(
l
[
0
]
==
'M'
or
l
[
0
]
==
"G"
or
l
[
0
]
==
'T'
):
if
(
self
.
p
and
self
.
p
.
online
):
print
"SENDING:"
+
l
self
.
p
.
send_now
(
l
)
else
:
print
"Printer is not online."
return
if
(
l
[
0
]
==
'm'
or
l
[
0
]
==
"g"
):
if
(
l
[
0
]
==
'm'
or
l
[
0
]
==
"g"
or
l
[
0
]
==
't'
):
if
(
self
.
p
and
self
.
p
.
online
):
print
"SENDING:"
+
l
.
upper
()
self
.
p
.
send_now
(
l
.
upper
())
...
...
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