discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] Fwd: Nand D flipflop in gnuradio


From: Sandhya G
Subject: [Discuss-gnuradio] Fwd: Nand D flipflop in gnuradio
Date: Thu, 2 Jan 2014 10:04:20 +0530

Hi ,
       
       Thank you for the replies. But i don't know much about programming so can anyone tell me how do i change the work function of block so that I can make it work.

Thanks 
sandhya



---------- Forwarded message ----------
From: MHMND Herath <address@hidden>
Date: Wed, Jan 1, 2014 at 11:10 PM
Subject: Re: [Discuss-gnuradio] Nand D flipflop in gnuradio
To: Sandhya G <address@hidden>


NAND can implement easily by creating C++ block and take input as what you want.
if (in0[i]==1 && in1[i]==1)
{
     out[i]=0;
}
else
{
    out[i]=1;
}

see Block structure how C++ work function and coding two inputs in c++

Neil


---------- Original Message -----------
From: Sandhya G <address@hidden>
To: "address@hidden" <address@hidden>
Sent: Mon, 30 Dec 2013 12:26:29 +0530
Subject: [Discuss-gnuradio] Nand D flipflop in gnuradio

> Hi,
>
>    Out of curiosity for implementing the digital circuits in
> gnuradio, I tried implementing nand D flipflop in gnuradio but stuck
> with it because gnuradio can&#39;t support loops.
>
> I&#39;m attaching grc file of what I tried. Can someone tell me how
> to make it work.
>
> Thanks in advance
>
> sandhya
------- End of Original Message -------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]