trace_capture_uart.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2019 Intel Corporation.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. """
  7. Script to capture tracing data with UART backend.
  8. """
  9. import sys
  10. import serial
  11. import argparse
  12. def parse_args():
  13. global args
  14. parser = argparse.ArgumentParser(
  15. description=__doc__,
  16. formatter_class=argparse.RawDescriptionHelpFormatter)
  17. parser.add_argument("-d", "--serial_port", required=True,
  18. help="serial port")
  19. parser.add_argument("-b", "--serial_baudrate", required=True,
  20. help="serial baudrate")
  21. parser.add_argument("-o", "--output", default='channel0_0',
  22. required=False, help="tracing data output file")
  23. args = parser.parse_args()
  24. def main():
  25. parse_args()
  26. serial_port = args.serial_port
  27. serial_baudrate = args.serial_baudrate
  28. output_file = args.output
  29. try:
  30. ser = serial.Serial(serial_port, serial_baudrate)
  31. ser.isOpen()
  32. except serial.SerialException as e:
  33. sys.exit("{}".format(e))
  34. print("serial open success")
  35. #enable device tracing
  36. ser.write("enable\r".encode())
  37. with open(output_file, "wb") as file_desc:
  38. while True:
  39. count = ser.inWaiting()
  40. if count > 0:
  41. while count > 0:
  42. data = ser.read()
  43. file_desc.write(data)
  44. count -= 1
  45. ser.close()
  46. if __name__=="__main__":
  47. try:
  48. main()
  49. except KeyboardInterrupt:
  50. print('Data capture interrupted, data saved into {}'.format(args.output))
  51. sys.exit(0)