Announcement

Collapse
No announcement yet.

Bipolar PI design

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Try this:
    Click image for larger version

Name:	image.png
Views:	136
Size:	319.9 KB
ID:	450765

    Comment


    • Originally posted by Carl-NC View Post
      This is where pot values get converted into timing values:

      Code:
      Bool ADC_Run(void)
      {
      if(ADC_GetPot1() || ADC_GetPot2()) // If either pot has changed value
      {
      Settings.TgtDelay = ( 50 + Pot1Value) << 1; // Min = 50 (12.5us), max = 113 (28.25us)
      Settings.TxWidth = ( 50 + Pot2Value) << 3; // Min = 50us, max = 305us
      Settings.TxPeriod = (200 + (Pot2Value << 2)) << 3; // Min = 200us, max = 1220us
      return True;
      }
      return False;
      }​
      The problem is, a minimum TxPeriod of 50us (20kHz) requires reducing everything else to fit. You would first need to drop the TxWidth down to, say, 10-15us and go from there.
      Hello
      Dear Carl
      Can you tell me GB delay in code? Is it 5us?

      Comment


      • Yes

        Comment


        • Originally posted by Carl-NC View Post
          Yes
          Dear carl,
          I am re-designing your schematic, do you think i can replace a tl074 for Ic5 and Ic4?
          Click image for larger version

Name:	bbp.jpg
Views:	0
Size:	68.1 KB
ID:	452450

          Comment


          • Originally posted by eduardo1979 View Post
            Hello.
            Yes, GND and -5V.
            Dear sir,
            About your Audio,
            Can i replace tl064 with tl074?
            thanks

            Comment


            • Originally posted by h9361 View Post
              I am re-designing your schematic, do you think i can replace a tl074 for Ic5 and Ic4?

              Can i replace tl064 with tl074?
              Yes and yes.

              Comment

              Working...
              X