Altera Quartus II Scripting Manuel d'utilisateur Page 390

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 634
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 389
3–260 Chapter 3: Tcl Packages & Commands
report
Quartus II Scripting Reference Manual © July 2013 Altera Corporation
get_report_panel_names
Usage
get_report_panel_names
Options
None
Description
Returns a list of panel names for the current report.
The table of contents portion of the Compilation Report window shows short panel names for better
readability. However, each panel name returned by this command is the full panel name as shown in the
right-hand side frame of the Compilation Report window or the .rpt file of the corresponding
command-line executable. For example, the table of contents shows the path "Analysis &
Synthesis||Summary". However, the corresponding full path returned by this Tcl command is "Analysis
& Synthesis||Analysis & Synthesis Summary".
Example
## Load report database and write Timing Analyzer Summary
## panel to file in HTML format
load_package report
project_open chiptrip
load_report
# Set panel name
set fmax_panel "Timing Analyzer Summary"
# Iterate through all the accessable panels
foreach panel [get_report_panel_names] {
# If find the panel '*Timing Analyzer Summary',
# write its content to file fmax.htm
if {[string match "*$fmax_panel" $panel] == 1} {
write_report_panel -file fmax.htm -html $panel
break
}
}
unload_report
project_close
Vue de la page 389
1 2 ... 385 386 387 388 389 390 391 392 393 394 395 ... 633 634

Commentaires sur ces manuels

Pas de commentaire