我正在尝试在 SIMULINK 中实现计数器逻辑,其中
in1, in2 are inputs
out1 is the output
if in2 = 0, out1 = 0;
if in2 = 1, out1 = 1 after x high edges of in1
我曾尝试使用“Detect Rise Positive”块,但失败得很惨,因为我没有足够的经验在 SIMULINK 中正确实现时序图。谁能给我指出正确的方向?
更新
自从我发布这个问题以来,我采取的一种方法是“触发和启用子系统”。我正在尝试进行设置,以便:
in2 becomes the enable signal
in1 becomes the trigger
in2 becomes the intput to the subsystem
Out1 becomes the output of the subsystem
但我认为上面的内容很垃圾。不幸的是,它不是 VHDL,我可以使用 4-5 行硬件逻辑描述来实现它。