forked from sudo-self/samsung-frp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
at_utils.py
83 lines (73 loc) · 2.38 KB
/
at_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
from typing import List
import serial
import serial.tools.list_ports as prtlst
from serial.tools import list_ports_common
import time
SERIAL_BAUDRATE = 115200
SERIAL_TIMEOUT = 12
def list_serial_ports() -> list_ports_common.ListPortInfo:
ports = prtlst.comports()
if len(ports) == 0:
print("No serial port available")
exit(1)
print("####### Available serial ports #######")
for port in ports:
print(port)
print("####### End of available serial ports #######")
return ports[0]
def get_AT_serial(port: str) -> serial.Serial:
return serial.Serial(port, baudrate=SERIAL_BAUDRATE, timeout=SERIAL_TIMEOUT)
def ATSend(io: serial.Serial, cmd: str) -> bool:
if not io.isOpen():
return False
print(f"Sending {cmd.encode()}")
io.write(cmd.encode())
time.sleep(0.5)
ret = io.read_all()
print(f"Received {ret}")
if b"OK\r\n" in ret:
return True
if b"ERROR\r\n" in ret:
return False
if ret == b"\r\n":
return False
if ret == cmd.encode():
return True
if ret == b'':
return False
return True
def tryATCmds(io: serial.Serial, cmds: List[str]):
for i, cmd in enumerate(cmds):
print(f"Trying method {i}")
try:
res = ATSend(io, cmd)
if not res:
print("OK")
except:
print(f"Error while sending command {cmd}")
try:
io.close()
except:
print("Unable to properly close serial connection")
def enableADB():
default_port = list_serial_ports()
port = input(f"Choose a serial port (default={default_port.device}) :") or str(default_port.device)
io = get_AT_serial(port)
print("Initial...")
# Seems to check if we are in *#0*# mode but apparently not working on the samsung I have
ATSend(io, "AT+KSTRINGB=0,3\r\n")
print("Go to emergency dialer and enter *#0*#, press enter when done")
input()
print("Enabling USB Debugging...")
cmds = []
cmds.append("AT+DUMPCTRL=1,0\r\n")
cmds.append("AT+DEBUGLVC=0,5\r\n")
cmds.append("AT+SWATD=0\r\n")
cmds.append("AT+ACTIVATE=0,0,0\r\n")
cmds.append("AT+SWATD=1\r\n")
cmds.append("AT+DEBUGLVC=0,5\r\n")
tryATCmds(io, cmds)
print("USB Debugging should be enabled")
print("If USB Debugging prompt does not appear, try unplug/replug the USB cable")
if __name__ == "__main__":
enableADB()