Shop OBEX P1 Docs P2 Docs Learn Events
what is the difference between NCO single-ended and NCO differential? — Parallax Forums

what is the difference between NCO single-ended and NCO differential?

courtenscourtens Posts: 101
edited 2015-06-22 07:15 in Propeller 1
%00100 and %00101

ctra := %00100 << 26 + pin

ctra := %00101 << 26 + pin

Comments

  • JonnyMacJonnyMac Posts: 9,105
    edited 2015-06-21 17:42
    In the differential modes there is a "B" that is output at the opposite polarity of the main "A" pin. In your second example the "B" pin would default to pin 0. You'd still need to set dira[0] to 1 in order to see that output.
  • jmgjmg Posts: 15,173
    edited 2015-06-21 17:44
    AN001 says this
              Mode                     APIN Output   BPIN  Output
    %00100    NCO single-ended     =>  PHSx[31]      None
    %00101    NCO differential     =>  PHSx[31]      !PHSx[31]
    
  • courtenscourtens Posts: 101
    edited 2015-06-22 07:15
    Thank you. This helped a lot.
Sign In or Register to comment.