<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Thyristor gate pulse triggering using Microcontroller... in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Thyristor-gate-pulse-triggering-using-Microcontroller/m-p/193982#M15151</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you worked out the voltage isolation issues yet?&amp;nbsp; Pulse transformer or optoisolator or other?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the way I do it is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; use an input capture to interrupt on the zero crossings,&amp;nbsp; use the delta readings to determine the incoming period.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; in the capture interupt set a timer interrupt to happen some time delay from the zero crossing for the start of your trigger pulse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; in the trigger pulse interrupt,&amp;nbsp; set another timer interupt (can be the same timer) to occur when you want the pulse to turn off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; software control of the trigger pulse will most likely be accurate enough,&amp;nbsp; and is more easily accomplished than trying to get a PWM channel to do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the zero crossing,&amp;nbsp; you want to be sure you have good filtering and hysteresis,&amp;nbsp; as noise will trigger this otherwise.&amp;nbsp; This hysteresis and filtering can cause the zero crossing ISR to occur late and un even for the positive and negative half cycles depending on your circuitry.&amp;nbsp; Your software will need to handle this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jan 2012 05:50:37 GMT</pubDate>
    <dc:creator>TurboBob</dc:creator>
    <dc:date>2012-01-06T05:50:37Z</dc:date>
    <item>
      <title>Thyristor gate pulse triggering using Microcontroller...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Thyristor-gate-pulse-triggering-using-Microcontroller/m-p/193981#M15150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;I have doubt in thyrister controlling. I am using only single phase. in this only two back to back thyrister is connected. so only two gate pulse is required. my Qustion:&lt;/P&gt;&lt;P&gt;How to generate gate pusle:&lt;BR /&gt;[A] Using 2 Edge alined PWM&lt;BR /&gt;[B] using Timer and Generate pulse on Two Pin (GPIO)&amp;nbsp;&amp;nbsp;&lt;BR /&gt;which is better and easiest way.&lt;/P&gt;&lt;P&gt;I am using freescale ColdFire V1 microcontroller.&lt;BR /&gt;I have done few programs on development board. without interfacing zero crossing detection its working ok. I can change (Edge Aligned) PWM duty cycle&amp;nbsp; as per feedback voltage. but when i introdused zero crossing (input capture Pin) at that time it does not work.&lt;/P&gt;&lt;P&gt;Please help me in this program. if you have any docdument please send me.&lt;BR /&gt;i do not have any ides on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jan 2012 16:59:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Thyristor-gate-pulse-triggering-using-Microcontroller/m-p/193981#M15150</guid>
      <dc:creator>uv</dc:creator>
      <dc:date>2012-01-04T16:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: Thyristor gate pulse triggering using Microcontroller...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Thyristor-gate-pulse-triggering-using-Microcontroller/m-p/193982#M15151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you worked out the voltage isolation issues yet?&amp;nbsp; Pulse transformer or optoisolator or other?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the way I do it is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; use an input capture to interrupt on the zero crossings,&amp;nbsp; use the delta readings to determine the incoming period.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; in the capture interupt set a timer interrupt to happen some time delay from the zero crossing for the start of your trigger pulse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; in the trigger pulse interrupt,&amp;nbsp; set another timer interupt (can be the same timer) to occur when you want the pulse to turn off.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; software control of the trigger pulse will most likely be accurate enough,&amp;nbsp; and is more easily accomplished than trying to get a PWM channel to do what you want.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the zero crossing,&amp;nbsp; you want to be sure you have good filtering and hysteresis,&amp;nbsp; as noise will trigger this otherwise.&amp;nbsp; This hysteresis and filtering can cause the zero crossing ISR to occur late and un even for the positive and negative half cycles depending on your circuitry.&amp;nbsp; Your software will need to handle this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jan 2012 05:50:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Thyristor-gate-pulse-triggering-using-Microcontroller/m-p/193982#M15151</guid>
      <dc:creator>TurboBob</dc:creator>
      <dc:date>2012-01-06T05:50:37Z</dc:date>
    </item>
  </channel>
</rss>

