Delete NOC Connection.
Syntax
delete_noc_connection [‑quiet] [‑verbose] <connection>
Usage
Name | Description |
---|---|
[-quiet]
|
Ignore command errors |
[-verbose]
|
Suspend message limits during command execution |
<connection>
|
NOC Connection to delete. |
Categories
Description
This command removes the NoC connections that are created using the create_noc_connection
command. This command cannot modify NoC connections created explicitly in BDs or DCPs. Use original design sources for any modifications.
Arguments
<connection>
- Specifies NoC
connection to delete-quiet
- (Optional) Execute the command quietly, returning no messages from the command. The command also returns TCL_OK regardless of any errors encountered during execution.
Note: Any errors encountered on the command-line, while launching the command, will be returned. Only errors occurring inside the command will be trapped.
-verbose
- (Optional) Temporarily override any message limits and return all messages from this command.
Note: Message limits can be defined with the
set_msg_config
command.Example
The following example deletes a NoC connection by name:
delete_noc_connection <my_noc_connection_name>
The following example uses get_noc_connections
to look up the connection name and then delete it:
delete_noc_connection [get_noc_connections -filter {name =~ "*4"}]