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 sys |
| 12 import time |
| 13 |
| 14 from pylib import android_commands |
| 15 |
| 16 PULSE_PERIOD = 20 |
| 17 |
| 18 def main(): |
| 19 while True: |
| 20 devices = android_commands.GetAttachedDevices() |
| 21 for device in devices: |
| 22 android_cmd = android_commands.AndroidCommands(device) |
| 23 android_cmd.RunShellCommand('rm -f /sdcard/host_heartbeat') |
| 24 time.sleep(PULSE_PERIOD) |
| 25 |
| 26 |
| 27 if __name__ == '__main__': |
| 28 sys.exit(main()) |
OLD | NEW |