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
5ea05777
Commit
5ea05777
authored
Jun 06, 2011
by
Keegi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remember last connected port during session and reconnect to it when passed connect without args
parent
fd6eb8ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
pronsole.py
pronsole.py
+6
-4
No files found.
pronsole.py
View file @
5ea05777
...
...
@@ -40,6 +40,7 @@ class pronsole(cmd.Cmd):
self
.
percentdone
=
0
self
.
tempreadings
=
""
self
.
aliases
=
{}
self
.
lastport
=
(
None
,
None
)
def
scanserial
(
self
):
"""scan for available ports. return a list of device names."""
...
...
@@ -142,22 +143,23 @@ class pronsole(cmd.Cmd):
def
do_connect
(
self
,
l
):
a
=
l
.
split
()
p
=
self
.
scanserial
()
port
=
None
if
len
(
p
)
>
0
:
port
=
self
.
lastport
[
0
]
if
port
is
None
and
len
(
p
)
>
0
:
port
=
p
[
0
]
baud
=
115200
baud
=
self
.
lastport
[
1
]
or
115200
if
(
len
(
a
)
>
0
):
port
=
a
[
0
]
if
(
len
(
a
)
>
1
):
try
:
baud
=
int
(
a
[
1
])
except
:
p
ass
p
rint
"Bad baud value '"
+
a
[
1
]
+
"' ignored"
if
len
(
p
)
==
0
and
port
is
None
:
print
"No serial ports detected - please specify a port"
return
if
len
(
a
)
==
0
:
print
"No port specified - connecting to
%
s at
%
dbps"
%
(
port
,
baud
)
self
.
lastport
=
(
port
,
baud
)
self
.
p
.
connect
(
port
,
baud
)
def
help_connect
(
self
):
...
...
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