Forum Discussion
SeanAB
Occasional Contributor
10 months agoALTPLL will not get installed in Platform Builder
Quartus Prime Lite 24.1 on Windows 1. I am able to add ALTPLL as a component to blank project without issue. The wizard builds the files no problem. I was able to do the basic blink mux counter proj...
KennyT_altera
Super Contributor
10 months agoThis is the soln you implement, right?
The issue is that qmegawiz command returns with status 1 which means "Cancel", so the tcl interprets the result as the user had clicked "Cancel" instead of "Finish". As a dirty hack I changed the following line
if { $status != 0 } {
to
if { $status != 0 && $status != 1} {
in ~/intelfpga_lite/20.1/ip/altera/sopc_builder_ip/altera_avalon_mega_common/sopc_mwizc.tcl
and it works. The "Cancel" button doesn't work after this of course but it's a far smaller issue.