mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 15:07:17 -04:00
Removed leftovers of old usb security tests implementation. Added tests for unlocking via security endpoint.
14 lines
334 B
Python
14 lines
334 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])
|
|
|
|
results = harness.connection.send_at("AT+CPIN?", 10000)
|
|
for result in results:
|
|
print(result)
|