Forum Discussion
HI Frank,
Thanks very much for your answers ! Right OK so only use pre-synthesis signals in Signal Tap. I get that and will do that from now on. Ok so again thanks for the tip about using preserve on registers and only using keep on combinatorial signals, i didn't know about that. For example then for a register called timer_tic_running we can have the following options to preserve that register:
NOT (* keep = "true" *) logic timer_tic_running;
YES (* preserve = "true" *) logic timer_tic_running;
YES(* noprune = "true" *) logic timer_tic_running;
Is this also OK:
MAYBE (* preserve = "true, noprune = "true" *) logic timer_tic_running;
However when you say 'changing the trigger conditions' doesn't require a rapid recompile, sometimes in my case it does do. For example if i have trig1 = 1 and trig2 = 0 and change that to trig1 = 1 and trig2 = 1 Siganl Tap GUI asks me to do a quick recomplie, which always ends up doing a full FPGA compileation. This is the behaviour i think is odd. But your saying this should not occur ? Strange because for me it does !
Thanks for your Help,
Dr Barry H
Where are you changing the trigger conditions?
In the Node List, for a trigger condition column, if it's a Boolean AND trigger, you can right-click any of the cells in that column (individual signal or [bus] group) and change the value without having to recompile. You just have to start the logic analyzer running again to look for the new trigger condition.
So what exactly are you changing that it is forcing you to recompile? Screenshot would help.
- drbarryh1 month ago
Occasional Contributor
HIU sstrell,
Thanks for the reply and analysis. Actually i am changing the trigger conditions from AND to OR and that causes this 'rapid recompilation' condition in Signal Tap, the . The instance manager row goes to RED in other words. This i find strange because why should that change require an FPGA compilation ? Surely the logic to do a Basic AND / Basic OR / Conditional Compare trigger operation is already compiled into Signal Tap Logic ? This does not happen using the AMD/Xilinx Chip Scope / Vivaodo scope for example.
Cheers, Dr Barry H
- sstrell1 month ago
Super Contributor
That’s your issue. You can’t switch the trigger type between Boolean AND and OR without recompiling. The user guide lists the “runtime” changes you can make without having to recompile.
- drbarryh1 month ago
Occasional Contributor
Him sstrell, Right ok ...thanks for the update. I must read that UG more then ! It is a pain having to recompile the entire FPGA just to go from an AND to an OR for the trigger though. You don't need to do any of that with Chip Scope Pro for example which to me makes for a much better way to implement a hassle free ILA !!
Best regards
Dr Barry H