mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-29 19:37:41 -04:00
Removed leftovers of old usb security tests implementation. Added tests for unlocking via security endpoint.
18 lines
492 B
Python
18 lines
492 B
Python
#!/usr/bin/env python
|
|
# Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
# For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
|
|
from harness.harness import Harness
|
|
import sys
|
|
|
|
|
|
harness = Harness(sys.argv[1])
|
|
|
|
harness.connection.send_at("at+cmgl=\"all\"", 10000)
|
|
harness.connection.send_at("at+cmgd=1,4", 10000)
|
|
harness.connection.send_at("at+cmgd=0,4", 10000)
|
|
harness.connection.send_at("at+cmgd=2,4", 10000)
|
|
harness.connection.send_at("at+cmgl=\"all\"", 10000)
|
|
|