Electronic – Digital circuit to toggle on rising edge of two signals

digital-logic

I need to design a circuit to toggle on the rising edge of two signals A and B. A is a square wave @10Hz, 50% duty cycle. B is a pulse that gets generated approx 20-30us after the rising edge of A.
I came up with a circuit to achieve it, but it uses monoshots which I wish to avoid. The monoshot is triggered by the pulse and it's Q' as well as signal A are the inputs to an AND gate to generate the required output Y=A.B'
Can you suggest a better way which uses digital circuits only? Thanks.enter image description hereenter image description here

Best Answer

You can do this with a D flip-flop with an asyncronous clear function

schematic

simulate this circuit – Schematic created using CircuitLab

Practically, you'll more often find the clear function has a low-active input, so you might need an inverter on your B signal.

For example, you could use 74AC11074.

Related Topic