Forum Discussion
Read from memory
Unfortunately, we do not provide support for writing custom scripts.
That being said, you can refer to this user guide, which provides details on how to use command-line executables in scripts to control Quartus software alongside other tools:
Regards,
Richard Tan
Hi,
I tried the script to see if any editable memory, but I get : Warning (16702): No editable memory instance was found.
Editable memory instances: ERROR: No editable memory instances found.
I use OnChip Memory writable, please image attached.
The TCL Script:
set hw_name "DE-SoC \[USB-1\]"
set dev_name "@2: 5CSE(BA5|MA5)/5CSTFD5D5/.. (0x02D120DD)"
# List editable memory instances
puts "Listing editable memory instances..."
set mem_instances [get_editable_mem_instances -hardware_name $hw_name -device_name $dev_name]
puts "Editable memory instances: $mem_instances"
if {[llength $mem_instances] == 0} {
puts "ERROR: No editable memory instances found."
exit 1
}
Regards.