Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alex037yang
OpenXG-RAN
Commits
31726d68
Commit
31726d68
authored
Apr 05, 2021
by
Remi Hardy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing qtel control
parent
53e624e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ci-scripts/ci_ctl_qtel.py
ci-scripts/ci_ctl_qtel.py
+4
-4
No files found.
ci-scripts/ci_ctl_qtel.py
View file @
31726d68
...
...
@@ -35,7 +35,7 @@ class qtel_ctl:
def
__init__
(
self
,
usb_port_at
):
self
.
QUECTEL_USB_PORT_AT
=
usb_port_at
#'/dev/ttyUSB2'
self
.
modem
=
serial
.
Serial
(
self
.
QUECTEL_USB_PORT_AT
,
timeout
=
1
)
self
.
cmd_dict
=
{
"wup"
:
self
.
wup
;
"detach"
:
self
.
detach
}
self
.
cmd_dict
=
{
"wup"
:
self
.
wup
,
"detach"
:
self
.
detach
}
def
__set_modem_state
(
self
,
ser
,
state
):
self
.
__send_command
(
ser
,
"AT+CFUN={}
\r
"
.
format
(
state
))
...
...
@@ -47,12 +47,12 @@ class qtel_ctl:
def
wup
(
self
):
self
.
__set_modem_state
(
modem
,
0
)
self
.
__set_modem_state
(
self
.
modem
,
0
)
time
.
sleep
(
3
)
self
.
__set_modem_state
(
modem
,
1
)
self
.
__set_modem_state
(
self
.
modem
,
1
)
def
detach
(
self
):
self
.
__set_modem_state
(
modem
,
0
)
self
.
__set_modem_state
(
self
.
modem
,
0
)
...
...
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