get parts

Posted . Visible to the public.

get_parts

The command get_parts returns a list of matching parts.

Example:

    set mypart "xc7k325t"
    set device_filter [format "%s*" $mypart]
    foreach part_pkg [get_parts -filter "DEVICE =~ $device_filter" ] {
        set pin_count [get_property IO_PIN_COUNT $part_pkg]
        set row_data [format "INFO: part %s, pins %s" $part_pkg $pin_count]
        puts $row_data    
    }

Cuauhtemoc
Last edit
Cuauhtemoc
Posted by Cuauhtemoc to Xilinx (2018-09-26 15:15)