Skip to content

Commit 13a614c

Browse files
TinyuZhaolbuque
authored andcommitted
libs/unit: Add Unit Cat1 support.
Signed-off-by: tinyu <tinyu.zhao@gmail.com>
1 parent 64e8861 commit 13a614c

6 files changed

Lines changed: 1039 additions & 10 deletions

File tree

m5stack/libs/driver/manifest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
"rotary/rotary.py",
4848
"simcom/__init__.py",
4949
"simcom/common.py",
50+
"simcom/ml307r.py",
5051
"simcom/sim7020.py",
5152
"simcom/sim7028.py",
5253
"simcom/sim7080.py",

m5stack/libs/driver/simcom/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def check_modem_is_ready(self):
6565
output, error = self.execute_at_command(at, True)
6666
return not error
6767

68-
def set_command_echo_mode(self, state=1):
68+
def set_command_echo_mode(self, state=0):
6969
# Set echo mode off or on
7070
ate = AT_CMD("ATE{}".format(state), "OK", 3)
7171
output, error = self.execute_at_command(ate)

0 commit comments

Comments
 (0)