<?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/challenges-projects/design-challenges/think-on/f/forum</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><lastBuildDate>Fri, 15 May 2020 15:46:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum" /><item><title>Design Challenge Results?</title><link>https://community.element14.com/thread/10931?ContentTypeID=0</link><pubDate>Fri, 15 May 2020 15:46:24 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:965c89f2-a42b-47ba-ac68-e6c1cdc5394c</guid><dc:creator>enkrypted</dc:creator><slash:comments>1</slash:comments><comments>https://community.element14.com/thread/10931?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum/10931/design-challenge-results/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Hello all,&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Is there any update on the winners of this challenge.&lt;/p&gt;&lt;p style="margin:0;"&gt;Its been a while since we&amp;#39;ve gotten any official updates.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;Hope all of you are doing well, stay safe &lt;/p&gt;&lt;p style="margin:0;"&gt;-Kevin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Interrupt on PIN_GIO_SPARE</title><link>https://community.element14.com/thread/10673?ContentTypeID=0</link><pubDate>Wed, 12 Feb 2020 22:18:53 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:ed50f28c-d66d-4bc8-b53e-96563ba64aec</guid><dc:creator>eivholt</dc:creator><slash:comments>7</slash:comments><comments>https://community.element14.com/thread/10673?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum/10673/interrupt-on-pin_gio_spare/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;Hi, I&amp;#39;m having some problems with interrupts. I want the available pin GIO to trigger an interrupt in my code. So far I have started with bdk_blinky and been able to read the pin configured as such:&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;Sys_DIO_Config(PIN_GIO_SPARE, DIO_NO_PULL | DIO_LPF_ENABLE | DIO_MODE_GPIO_IN_0);&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;I am trying to understand the API on how to configure interrupts. I have tried this:&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;Sys_DIO_IntConfig(0,&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;DIO_DEBOUNCE_ENABLE |&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;DIO_SRC_DIO_0 |&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;DIO_EVENT_HIGH_LEVEL,&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;DIO_DEBOUNCE_SLOWCLK_DIV32,&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;0);&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;experimenting with the parameters. I have implemented:&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;void DIO0_IRQHandler(void){&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;LED_On(LED_BLUE);&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;}&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;with breakpoint. It never hits.&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;Can anyone explain what index and DIO_SRC_DIO_* means in this context and what I can use? Should I use another library?&lt;/p&gt;&lt;p style="margin:0;font-family:Arial, &amp;#39;Lucida Grande&amp;#39;, sans-serif;color:#333333;"&gt;I tried to modify the bdk_button to use the PIN_GIO_SPARE pin instead of button0, but to no avail.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Has everyone received the KIT?</title><link>https://community.element14.com/thread/39016?ContentTypeID=0</link><pubDate>Tue, 14 Jan 2020 10:35:55 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:19c03fa6-1001-4bda-8152-997bdde0df71</guid><dc:creator>meera_hussien</dc:creator><slash:comments>24</slash:comments><comments>https://community.element14.com/thread/39016?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum/39016/has-everyone-received-the-kit/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Has everyone received the kit?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Official Selectees, and their selected projects!</title><link>https://community.element14.com/thread/38886?ContentTypeID=0</link><pubDate>Sun, 17 Nov 2019 09:38:06 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:8ffa21a4-908b-4351-be3a-e03dc5f4a237</guid><dc:creator>ankur608</dc:creator><slash:comments>0</slash:comments><comments>https://community.element14.com/thread/38886?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum/38886/official-selectees-and-their-selected-projects/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Any update on the shipped hardware? &lt;img alt="image" class="migration-embeded-object" src="#https://www.element14.com/community//files1.element14.com/community/9.0.5.998b920/images/emojis/1f912.png"  /&gt;&lt;/p&gt;&lt;p style="margin:0;padding:0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p style="margin:0;"&gt;-Ankur&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>unable to submit my application</title><link>https://community.element14.com/thread/38790?ContentTypeID=0</link><pubDate>Thu, 17 Oct 2019 03:29:12 GMT</pubDate><guid isPermaLink="false">93d5dcb4-84c2-446f-b2cb-99731719e767:623e0548-2da8-427f-a07d-424d733f1c5e</guid><dc:creator>chay-atl</dc:creator><slash:comments>14</slash:comments><comments>https://community.element14.com/thread/38790?ContentTypeID=0</comments><wfw:commentRss>https://community.element14.com/challenges-projects/design-challenges/think-on/f/forum/38790/unable-to-submit-my-application/rss?ContentTypeId=0</wfw:commentRss><description>&lt;p style="margin:0;"&gt;Hi, I&amp;#39;m unable to submit my application. I don&amp;#39;t see a button to submit. Only 30 mins left before the deadline.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>