Quartus® Prime Pro Edition User Guide: Debug Tools

ID 683819
Date 7/08/2024
Public
Document Table of Contents

2.16. Merge Multiple Signal Tap files

In your typical development cycle, you might end up with multiple Signal Tap files. You can merge them using a set of commands in Python.

For example, if you have two different .stp files that you want to merge, merge them as follows:
  1. Create a small Python script:
    from quartus.stp import merge_stp_files
    
    if __name__ == ‘__main__’:stp_merger = merge_stp_files.STP_FILE_MERGER()
      stp_merger.merge(“a.stp”)
      stp_merger.merge(“b.stp”)
      stp_merger.write(“a_and_b_merged.stp”)
  2. In a console window, run the following command:
    quartus_py <scriptname.py> <scriptname_args>