Hey Community,
I am debugging a loading script and it takes an eternity to go through the QDF Init section. Is there a way to speed it up or skip the section?
Thanks
Hi, and sorry for late reply. I agree that initiating is a problem during debugging. To help out with this try InitLinkSkip, place it next to InitLink and just replace the include to this one.
Replace InitLink.qvs with InitLinkSkip.qvs during initiation to bypass initiation steps to improve performance and thereby debug experience. Limitations are that initiation is needed first time to populate global variables, and any change, like updated global variables need to reinitiate. Example:
$(Include=lib://Root\InitLinkSkip.qvs);
Hi, and sorry for late reply. I agree that initiating is a problem during debugging. To help out with this try InitLinkSkip, place it next to InitLink and just replace the include to this one.
Replace InitLink.qvs with InitLinkSkip.qvs during initiation to bypass initiation steps to improve performance and thereby debug experience. Limitations are that initiation is needed first time to populate global variables, and any change, like updated global variables need to reinitiate. Example:
$(Include=lib://Root\InitLinkSkip.qvs);
Thanks @Magnus . It works like a charm