Intel® Quartus® Prime Standard Edition User Guide: Debug Tools

ID 683552
Date 9/24/2018
Public
Document Table of Contents

2.9.1. Convert your Dashboard Scripts to Toolkit API

Convert your Dashboard scripts to work with the Toolkit API by following these steps:
  1. Create a .toolkit file.
  2. Modify your dashboard script:
    1. Remove the add_service dashboard <name of service> command.
    2. Change dashboard_<command> to toolkit_<command>.
    3. Change open_service to claim_service
    For example:
    open_service slave $path 
    master_read_memory $path address count
    becomes
    set c [claim_service slave $path lib {}] 
    master_read_memory $c address count