<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.element14.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Forum - Recent Threads</title><link>https://community.element14.com/products/manufacturers/infineon/f/forum</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><lastBuildDate>Wed, 07 Oct 2020 19:04:05 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://community.element14.com/products/manufacturers/infineon/f/forum" /><item><title>Infineon Dave IDE - Ethercat Dev Kit V2.00 userbuttons in code</title><link>https://community.element14.com/thread/39667?ContentTypeID=0</link><pubDate>Wed, 07 Oct 2020 19:04:05 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:fe206d04-0670-43c1-81d5-edc402d84948</guid><dc:creator>daemoninformatica</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/39667?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/39667/infineon-dave-ide---ethercat-dev-kit-v2-00-userbuttons-in-code/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Greetings, &lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;As I was selected to Roadtest the Infineon Optiga Trust M product, I&amp;#39;m currently in the process of writing, adapting and otherwise messing around with examples and materials published by Infineon and others.&lt;/p&gt;&lt;p style="margin:0;"&gt;As suggested in a lot of documentation, I&amp;#39;m getting aquainted with &amp;#39;Dave IDE&amp;#39; and while I think I&amp;#39;m getting the hang of using Dave APPs, something is frustrating me:&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;The Dev-Kit has, besides the controller and a debugger interface, several other connectors (Arduino compatible shield and some headers) and a couple of buttons and leds.&lt;/p&gt;&lt;p style="margin:0;"&gt;Just about everything relevant is either coded in the silk-screen on which port and pin they&amp;#39;re mapped, or this can be easily reverse-engineered from the schematics available.&lt;/p&gt;&lt;p style="margin:0;"&gt;Working to build a well-founded understanding of the technology, and following some steps I&amp;#39;ve set out to achieve in my Roadtest, I realised I needed to get some grasp of the method of working with the APP component system.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;The &amp;#39;getting started Blinky&amp;#39; over PWM is easy enough and answers some questions. But I all to soon ran into the problem: It seemed to be impossible to use one of the on-board leds (on the devboard) for the project.&lt;/p&gt;&lt;p style="margin:0;"&gt;Neither one (connected to P4.0 and P4.1 resp.) was mappable in the pin configurator. Fair enough, other pins were and those mostly were exposed over the Arduino interface. I wouldn&amp;#39;t be much of a tinkerer if I didn&amp;#39;t&lt;/p&gt;&lt;p style="margin:0;"&gt;have any leds in store (I could light a runway if I wanted to) so I had a blinky after that.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;But deciding that I needed to continue experimenting on it and decided to add a button that would halt and continue the blinky by pressing it. Button 1 seemed a good idea so, as a true embedded engineer&lt;/p&gt;&lt;p style="margin:0;"&gt;(XMega, mostly) I decided to query the APP repo for an interrupt routine and work from there. How (much) hard(er) could it be? A simple Interrupt routine component is available, but when I tried to configure it&lt;/p&gt;&lt;p style="margin:0;"&gt;to use &amp;#39;Button 1&amp;#39;, it wouldn&amp;#39;t allow me. Mapping it to P0.7, no problem and that basically worked, but I couldn&amp;#39;t figure it out.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Adding the component Digital_IO and then using my (otherwise doing nothing) main-loop, I was simply able to poll the button state and update my PWM instance.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;So mission accomplished, but I feel I&amp;#39;m missing something important.&lt;/p&gt;&lt;ol&gt;&lt;li&gt; Why was I not able to map the user-led in my PWM component?&lt;/li&gt;&lt;li&gt;Why couldn&amp;#39;t I configure my button on an interrupt?&lt;/li&gt;&lt;/ol&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;I found a datasheet &lt;a class="jive-link-external-small" href="https://www.infineon.com/dgdl/Infineon-XMC4700-XMC4800-DS-v01_01-EN.pdf?fileId=5546d462518ffd850151908ea8db00b3" rel="nofollow ugc noopener" target="_blank"&gt;https://www.infineon.com/dgdl/Infineon-XMC4700-XMC4800-DS-v01_01-EN.pdf?fileId=5546d462518ffd850151908ea8db00b3&lt;/a&gt; about the pinout of the XMC4800 (starts at page 30) and while it has a Lot of pins, for example P2.2 (used for my PWM output) and P4.1 (The led I couldn&amp;#39;t map) have very few distinct differences. But P2.2 has CCU peripheral connections P4.1 doesn&amp;#39;t seem to have. I suppose that could the be reason for PWM limits?&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;But I have less success with understanding the Interrupt limitations. What symbol in the table denotes this one?&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;I&amp;#39;d appreciate it if anyone has any insights..&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Kind Regards,&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Martin.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>What's Your Biggest Challenge In Implementing Motor Control In Projects?</title><link>https://community.element14.com/thread/8865?ContentTypeID=0</link><pubDate>Wed, 09 May 2018 19:12:02 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:e82837c5-9920-434d-8102-ee19265ade18</guid><dc:creator>rscasny</dc:creator><slash:comments>2</slash:comments><comments>https://community.element14.com/thread/8865?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/8865/what-s-your-biggest-challenge-in-implementing-motor-control-in-projects/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;We have a lot of motor control content and projects around the community. To make sure we are putting up the right kind of motor control content or offering the right kind of motor control projects, I want to ask everyone about their challenges implementing motor control, drives, etc. Please add your comments below. Thanks.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>importing alltium symbols to eagle</title><link>https://community.element14.com/thread/8046?ContentTypeID=0</link><pubDate>Wed, 06 Sep 2017 10:24:29 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:a1d65dbc-4a78-46e4-9135-75352a4019c2</guid><dc:creator>sushmithaborkar</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/8046?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/8046/importing-alltium-symbols-to-eagle/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Hello Sir&lt;/p&gt;&lt;p style="margin:0;"&gt;Am working on conversion of PCB components into different tools. I would like to know when importing altium footprint into eagle board ,the copper shapes such as solder mask layer and paste mask layer is not properly imported and PADS are changed fro rectangular to oval shape. Is there any solution to import it correctly or any script based on it.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Regards,&lt;/p&gt;&lt;p style="margin:0;"&gt;Sushmitha&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Design of three-phase Inverter for research purposestt</title><link>https://community.element14.com/thread/47926?ContentTypeID=0</link><pubDate>Sun, 15 Mar 2015 13:19:56 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:9f240b05-59a3-4c62-9b80-862bf2755c68</guid><dc:creator>e14 Contributor</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/47926?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/47926/design-of-three-phase-inverter-for-research-purposestt/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;&lt;span style="font-size:10pt;font-family:&amp;#39;times new roman&amp;#39;, times;"&gt;I want to design a three phase inverter using the components from Infinieon. I want you to recommend me IGBT modules and gate drivers that are compatible with them to purchase from Farnel1&lt;/span&gt;&lt;/p&gt;&lt;p style="margin:0;"&gt;&lt;span style="font-family:&amp;#39;times new roman&amp;#39;, times;font-size:10pt;"&gt;I suggest &lt;/span&gt;&lt;/p&gt;&lt;h1 style="margin-top:20px;margin-bottom:20px;font-size:1.818em;color:#333333;font-family:Arial, Helvetica, sans-serif;background:#ffffff;"&gt;&lt;span style="font-family:&amp;#39;times new roman&amp;#39;, times;font-size:10pt;"&gt;INFINEON&amp;nbsp; FS50R06W1E3&amp;nbsp; IGBT, LOW POWER, 600V, 50A, EASYPACK&lt;/span&gt;&lt;/h1&gt;&lt;p style="margin:0;"&gt;&lt;span style="font-family:&amp;#39;times new roman&amp;#39;, times;font-size:10pt;"&gt;with &lt;/span&gt;&lt;/p&gt;&lt;h1 style="margin-top:20px;margin-bottom:20px;font-size:1.818em;color:#333333;font-family:Arial, Helvetica, sans-serif;background:#ffffff;"&gt;&lt;span style="font-family:&amp;#39;times new roman&amp;#39;, times;font-size:10pt;"&gt;INFINEON&amp;nbsp; 2ED020I12-FI&amp;nbsp; IC, IGBT DRIVER, DUAL, PG-DSO-18-2&lt;/span&gt;&lt;/h1&gt;&lt;p style="margin:0;"&gt;&lt;span style="font-family:&amp;#39;times new roman&amp;#39;, times;font-size:10pt;"&gt;are they compatible, also what else do I need to build the full inverter system, please recommend me with the whole staff to build this system with components from Farnell.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>mohamed2020</title><link>https://community.element14.com/thread/24088?ContentTypeID=0</link><pubDate>Tue, 04 Mar 2014 20:57:19 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:836b3b1f-d7d6-4ef3-a0b0-b8dea3e8f3c6</guid><dc:creator>e14 Contributor</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/24088?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/24088/mohamed2020/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;&lt;a class="jive-link-external-small" href="http://www.fedv.bu.edu.eg/" rel="nofollow ugc noopener" target="_blank" title="http://www.fedv.bu.edu.eg/"&gt;http://www.fedv.bu.edu.eg/&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Fabricant :     INFINEON  // Produit chimique que compose la référence BSP295 // 1214268</title><link>https://community.element14.com/thread/15338?ContentTypeID=0</link><pubDate>Wed, 02 Feb 2011 16:27:56 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:44a7bd12-161e-4360-90e2-9c1317b9dd2d</guid><dc:creator>e14 Contributor</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/15338?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/products/manufacturers/infineon/f/forum/15338/fabricant-infineon-produit-chimique-que-compose-la-reference-bsp295-1214268/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Bonjour,&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="" style="margin:0;"&gt;Je souhaiterai avoir la liste des produits chimique qui compose le produit INFINEON&lt;/div&gt;&lt;div class="" style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="" style="margin:0;"&gt;Référence : BSP295&lt;/div&gt;&lt;div class="" style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="" style="margin:0;"&gt;Farnell : 1214268&lt;/div&gt;&lt;div class="" style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="" style="margin:0;"&gt;Merci d’avance&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>