OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
2 # | |
3 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 """Sends a heart beat pulse to the currently online Android devices. | |
8 This heart beat lets the devices know that they are connected to a host. | |
9 """ | |
10 | |
11 import os | |
12 import sys | |
13 import time | |
14 | |
15 from pylib import android_commands | |
16 | |
17 PULSE_PERIOD = 20 | |
18 | |
19 def main(): | |
20 while True: | |
21 try: | |
22 devices = android_commands.GetAttachedDevices() | |
23 for device in devices: | |
24 android_cmd = android_commands.AndroidCommands(device) | |
25 android_cmd.EnableAdbRoot() | |
Isaac (away)
2013/03/28 22:37:44
I don't think we should be called this here as it
Siva Chandra
2013/03/28 23:52:47
If I add the 'su ' prefix, it says "permission den
Isaac (away)
2013/03/29 00:18:32
You might not be calling with su right. I think y
Siva Chandra
2013/03/29 01:47:06
This is what I tried and tested to be working:
I
| |
26 android_cmd.RunShellCommand('touch /sdcard/host_heartbeat') | |
27 except: | |
28 # Keep the heatbeat running bypassing all errors. | |
29 pass | |
30 time.sleep(PULSE_PERIOD) | |
31 | |
32 | |
33 if __name__ == '__main__': | |
34 sys.exit(main()) | |
OLD | NEW |