AN 1002: Sharing Platform Designer Packaged Subsystems
ID
786899
Date
10/02/2023
Public
4.4.1. Editing the Packaged Subsystem
4.4.2. Step 4a: Add Two Checkbox Controls
4.4.3. Step 4b: Enable or Disable Modules and Checkboxes
4.4.4. Step 4c: Run run_system_script
4.4.5. Step 4d: Iterate Over All Parameters
4.4.6. Step 4e: Setting DisplayPort IP Functionality
4.4.7. Step 4f: Make Packaged Subsystem Unlockable
4.4.8. Step 4g: Sync System Infos, Assign Base Addresses, and Save
4.4.5. Step 4d: Iterate Over All Parameters
Next, specify the following to iterate over all the parameters. Adding these lines allows you to change the structure of the system and the parameters of internal components based upon the input in the package-level parameters.
for {set i 0} {$i < $args_len} {incr i} { set param [lindex $args $i] set val [lindex $args [incr i]]
Figure 16. Iterating Over All Parameters