<?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;</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;</description></item><item><title>RE: What's Your Biggest Challenge In Implementing Motor Control In Projects?</title><link>https://community.element14.com/thread/118064?ContentTypeID=1</link><pubDate>Fri, 11 May 2018 08:01:55 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:0d7cd8b1-b15f-494c-b0f1-e3e2d56f5be9</guid><dc:creator>avnrdf</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/118064?ContentTypeID=1</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;Yes, as &lt;span&gt;&lt;a href="https://community.element14.com/members/dougw"&gt;dougw&lt;/a&gt;&lt;/span&gt; says, driving BLDC motors is a whole different ball game. Simple stepper motor/ brushed DC is easy, but BLDC is a lot more complex &amp;amp; is a step above the level of most hobbyists projects: from basic trapezoidal, to sensorless and field oriented control, there is a pretty steep learning curve to learn the theoretical concepts. Implementation is another challenge in itself because the hardware needs to be exactly to spec when dealing with FOC since the whole system needs to be tuned. Sensorless trapezoidal is more flexible in that sense because it&amp;#39;s more plug &amp;amp; play friendly.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Vendors are certainly trying to make it easy by doing most of the hard work for you, behind the (TI has InstaSPIN &amp;amp; InstaMOTION, ST has their own motor control SDK for STM32 &amp;amp; I&amp;#39;m not sure about Microchip &amp;amp; Infineon) but more content on the community that focuses on the technical side of things (deep-dives, webinars etc) would be pretty nice to have!&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Sadly, I missed out on the &lt;a class="jive-link-roadTest" href="https://www.element14.com/community/roadTests/1809/l/ti-motor-drive-bundle-motorware-personal-trainer"&gt;TI Motor Drive Bundle, MotorWare, Personal Trainer&lt;/a&gt; road test, but something along the lines of this will be great! I was going through the reviews, and not only did they get a complete kit to test (C2000 Launchpad, Driver board &amp;amp; Motor), but they got a personal trainer from TI, which is definitely a step ahead of searching for answers on the TI E2E Community Forum.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: What's Your Biggest Challenge In Implementing Motor Control In Projects?</title><link>https://community.element14.com/thread/118050?ContentTypeID=1</link><pubDate>Fri, 11 May 2018 05:43:58 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:093ebc7a-91d9-4b15-b3aa-1b253171d435</guid><dc:creator>dougw</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/118050?ContentTypeID=1</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;BLDC, PMSM, trapezoidal BEMF&lt;/p&gt;&lt;p style="margin:0;"&gt;Motor control has increased in complexity since I was in school.&lt;/p&gt;&lt;p style="margin:0;"&gt;I have trouble justifying adding a lot of complexity to most motor projects.&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;</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>Former Member</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;</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>Former Member</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;</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>Former Member</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;</description></item><item><title>RE: Fabricant :     INFINEON  // Produit chimique que compose la référence BSP295 // 1214268</title><link>https://community.element14.com/thread/7614?ContentTypeID=1</link><pubDate>Wed, 09 Feb 2011 12:10:49 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:c83c3c71-c0bb-43e5-bea0-3c58ac1dbaaf</guid><dc:creator>Former Member</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/7614?ContentTypeID=1</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;p style="margin:0;"&gt;Pour info, concernant les substances chimiques, il existe sur le site Infineon une liste des substances bannies et qui subissent une restriction en ppm.&lt;/p&gt;&lt;p style="margin:0;"&gt;Voir le lien ci-dessous&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;&lt;a class="jive-link-external-small" href="http://www.infineon.com/dgdl/Substances+Banned+and+Restricted+by+Infineon+Technologies+AG+2.2.pdf?folderId=db3a304312fcb1bc01132593ebf61b86&amp;amp;fileId=db3a30431c69a49d011cbd07962e0d6d" rel="nofollow" target="_blank"&gt;http://www.infineon.com/dgdl/Substances+Banned+and+Restricted+by+Infineon+Technologies+AG+2.2.pdf?folderId=db3a304312fcb1bc01132593ebf61b86&amp;amp;fileId=db3a30431c69a49d011cbd07962e0d6d&lt;/a&gt;&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Cedric&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>