Altera Quartus II Scripting Bedienungsanleitung Seite 397

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 634
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 396
Chapter 3: Tcl Packages & Commands 3–267
report
© July 2013 Altera Corporation Quartus II Scripting Reference Manual
unload_report
Usage
unload_report
Options
None
Description
Unloads the report for the current revision or the specified revision name.
After the report is loaded or reloaded, the cached panel ids, and row and column indices, may become
outdated or invalid. Altera recommends that you update them before using them.
Example
# Load report package
load_package report
# Open chiptrip project
project_open chiptrip
# Load the current revision report
load_report
# Set panel name and id
set panel {Fitter||Fitter Summary}
set id [get_report_panel_id $panel]
# Get total logic elements
set rname {Total [Ll]ogic [Ee]lements}
set rindex [get_report_panel_row_index -id $id $rname]
set rname [get_report_panel_data -id $id -row $rindex -col 0]
set data [get_report_panel_data -id $id -row $rindex -col 1]
puts "$rname: $data"
# Get total pins
set rname {Total [Pp]ins}
set rindex [get_report_panel_row_index -id $id $rname]
set rname [get_report_panel_data -id $id -row $rindex -col 0]
set data [get_report_panel_data -id $id -row $rindex -col 1]
puts "$rname: $data"
# Unload the report
unload_report
# Close the project
project_close
Seitenansicht 396
1 2 ... 392 393 394 395 396 397 398 399 400 401 402 ... 633 634

Kommentare zu diesen Handbüchern

Keine Kommentare