<?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: K70 Color Keying in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319795#M14271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it still doesn't work for me, so I must be missing something else. I shall have another look when I get chance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2014 07:04:51 GMT</pubDate>
    <dc:creator>ant1882</dc:creator>
    <dc:date>2014-07-18T07:04:51Z</dc:date>
    <item>
      <title>K70 Color Keying</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319792#M14268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use the color keying feature of the K70 LCDC without success. I am using the tower system, I can display things on the LCD (our own) without any issues, using the graphics window and background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I have is a graphics window of 100 lines with a group of red lines in the middle, from my understanding if I enable color keying correctly these red lines should become transparent... is this correct? If so then below is the code I am using to enable color keying:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;//&amp;nbsp; set LCD graphic window control&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; LCDC_LGWCR =&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWAV(0x9f)&amp;nbsp;&amp;nbsp; | // alpha-transparent value (0xFF is opaque)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWE_MASK&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWCKE_MASK&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp; // Colour Keying enable&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWCKR(0x3f)&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Red colour keying&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWCKG(0)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWCKB(0);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anybody has used color keying successfully I would appreciate any help or ideas as to why mine doesn't. Apologies if I have missed any information that may help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anthony&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jul 2014 09:15:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319792#M14268</guid>
      <dc:creator>ant1882</dc:creator>
      <dc:date>2014-07-14T09:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: K70 Color Keying</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319793#M14269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you enable color keying all the selected color component in the graphic window will become transparent, not only those pixels with a 100% red color component.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2014 20:50:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319793#M14269</guid>
      <dc:creator>apanecatl</dc:creator>
      <dc:date>2014-07-17T20:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: K70 Color Keying</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319794#M14270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to remove the Red component and display the Green and Blue components you would have to set the color keying as follows:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Red color keying&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Green color keying&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Blue color keying&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LCDC_LGWCR_GWCKR(0x00)&amp;nbsp; | &lt;/STRONG&gt;&lt;STRONG&gt; LCDC_LGWCR_GWCKG(0xFF)&amp;nbsp; |&amp;nbsp; &lt;/STRONG&gt;&lt;STRONG&gt;LCDC_LGWCR_GWCKB(0xFF);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;a 0x00 in any of the color keying fields will render it completely transparent whilst a 0xFF value will render it completely visible.&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jul 2014 21:07:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319794#M14270</guid>
      <dc:creator>apanecatl</dc:creator>
      <dc:date>2014-07-17T21:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: K70 Color Keying</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319795#M14271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it still doesn't work for me, so I must be missing something else. I shall have another look when I get chance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 07:04:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/K70-Color-Keying/m-p/319795#M14271</guid>
      <dc:creator>ant1882</dc:creator>
      <dc:date>2014-07-18T07:04:51Z</dc:date>
    </item>
  </channel>
</rss>

