<?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: Re: Vybrid GPIO on /sys/class/gpio does not switch properly in Vybrid Processors</title>
    <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341341#M3382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my initial post I mentioned that I just used the shell to check the status of the the GPIO file parallel to the C-Program. Let me explain again in detail:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Set GPIO to low in C-Program: write (gpio_fd, "0", 1);&lt;/P&gt;&lt;P&gt;2. Checked with scope: the pin is still HIGH!&lt;/P&gt;&lt;P&gt;3. Checked File-Status in shell: "cat /sys/class/gpio/gpio113/value" - returns "0", so even linux thinks that the pin is low, but it is actually high, because the scope doesn't lie! :smileywink:&lt;/P&gt;&lt;P&gt;4. Tried to explicitely set the pin to LOW: "echo 0 &amp;gt; /sys/class/gpio/gpio113/value" - suddenly the pin goes to LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this behaviour is not really reproducable, it happens stochastic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my second post I tried to set the GPIO from shell only and did this in a loop. Also here it happens, so it is not related to the C code.&lt;/P&gt;&lt;P&gt;I tried the loop with different intervals (100ms/500ms) which are quite long, so I could easily measure it with a scope.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2015 14:08:25 GMT</pubDate>
    <dc:creator>johannestraxler</dc:creator>
    <dc:date>2015-03-02T14:08:25Z</dc:date>
    <item>
      <title>Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341337#M3378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a GPIO (PTE8 - Pin Nr. 113) exported via the /sys/class/gpio device tree and configured as OUTPUT direction.&lt;/P&gt;&lt;P&gt;From my C-Code I do the following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="c++" __jive_macro_name="code" class="jive_text_macro _jivemacro_uid_14249672043621568 jive_macro_code" jivemacro_uid="_14249672043621568" modifiedtitle="true"&gt;
&lt;P&gt;int fd = open ("/sys/class/gpio/gpio113/value", O_WRONLY);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;while (1)&lt;/P&gt;
&lt;P&gt;{&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; write (fd, "1", 1);&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; ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write (fd, "0", 1);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is, that write() does not work every time. It seems as if the value is not written into the Port-Register of the processor. I did measurements with a scope directly on the processor pin and the value showed 1 after the second write statement in line 11, but it should be 0. In the same step I checked in shell with "cat /sys/class/gpio/gpio113/value" and here the value is also shown as 0. When I then typed "echo 0 &amp;gt; /sys/class/gpio/gpio113/value" in the shell the pin went to 0. I also tried to modify the driver strength in IOMUX to 25Ohm, 50Ohm and 150Ohm and explicitely set OBE to high, but the behaviour is the same - sometimes it work - sometimes not!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have an advice for me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Johannes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2015 16:24:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341337#M3378</guid>
      <dc:creator>johannestraxler</dc:creator>
      <dc:date>2015-02-26T16:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341338#M3379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Kernel version do you exactly use? The Mainline GPIO/Pinctrl driver behaves slightly different then the 3.0/3.13 Timesys one. Also, how do you debug exactly? At least on current kernels, it looks like the value write could sleep. Do you break the code execution after the write? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://lxr.free-electrons.com/source/drivers/gpio/gpiolib-sysfs.c#L105" title="http://lxr.free-electrons.com/source/drivers/gpio/gpiolib-sysfs.c#L105"&gt;Linux/drivers/gpio/gpiolib-sysfs.c - Linux Cross Reference - Free Electrons&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What polarity do you use? (see &lt;STRONG&gt;&lt;EM&gt;active_low &lt;/EM&gt;&lt;/STRONG&gt;file). However, I don't think this is the issue since you do not change it and hence it should be the same issue when using sysfs from the shell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 10:20:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341338#M3379</guid>
      <dc:creator>falstaff</dc:creator>
      <dc:date>2015-03-02T10:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341339#M3380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Linux version 3.0.15-ts-armv7l &lt;/P&gt;&lt;P&gt;gcc version 4.8.3 (Timesys 20140811) )&lt;/P&gt;&lt;P&gt;PREEMPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case I didn't have to debug, it was enough to write a shell script, which toggles the pin and verified it with an oscilloscope. The result on the scope was that the pin did not toggle every time as expected, but it stay for one complete period low or high.&lt;/P&gt;&lt;P&gt;ACTIVE_LOW is 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 11:44:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341339#M3380</guid>
      <dc:creator>johannestraxler</dc:creator>
      <dc:date>2015-03-02T11:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341340#M3381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the initial post you stated that it worked in Bash. So it does not work when using a loop in a bash script? How do you know whether it toggled the pin or whether it just had a glitch timewise (latency)? We recently used a Python script on one of our modules and got a pretty decent square wave, however we run it on a newer kernel.org Linux kernel:&lt;/P&gt;&lt;P&gt;&lt;A href="http://developer.toradex.com/knowledge-base/python-in-linux" title="http://developer.toradex.com/knowledge-base/python-in-linux"&gt;http://developer.toradex.com/knowledge-base/python-in-linux&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 13:16:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341340#M3381</guid>
      <dc:creator>falstaff</dc:creator>
      <dc:date>2015-03-02T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341341#M3382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my initial post I mentioned that I just used the shell to check the status of the the GPIO file parallel to the C-Program. Let me explain again in detail:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Set GPIO to low in C-Program: write (gpio_fd, "0", 1);&lt;/P&gt;&lt;P&gt;2. Checked with scope: the pin is still HIGH!&lt;/P&gt;&lt;P&gt;3. Checked File-Status in shell: "cat /sys/class/gpio/gpio113/value" - returns "0", so even linux thinks that the pin is low, but it is actually high, because the scope doesn't lie! :smileywink:&lt;/P&gt;&lt;P&gt;4. Tried to explicitely set the pin to LOW: "echo 0 &amp;gt; /sys/class/gpio/gpio113/value" - suddenly the pin goes to LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this behaviour is not really reproducable, it happens stochastic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my second post I tried to set the GPIO from shell only and did this in a loop. Also here it happens, so it is not related to the C code.&lt;/P&gt;&lt;P&gt;I tried the loop with different intervals (100ms/500ms) which are quite long, so I could easily measure it with a scope.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 14:08:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341341#M3382</guid>
      <dc:creator>johannestraxler</dc:creator>
      <dc:date>2015-03-02T14:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341342#M3383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason the kernel does not see the value of the outside world is that the Input buffer is explicitly disabled &lt;SPAN style="font-size: 13.3333330154419px;"&gt;in the old 3.0 kernel,&lt;/SPAN&gt; when direction is "output":&lt;/P&gt;&lt;P&gt;&lt;A href="http://git.toradex.com/cgit/linux-toradex.git/tree/arch/arm/plat-mxc/gpio-mvf.c?h=colibri_vf#n171" title="http://git.toradex.com/cgit/linux-toradex.git/tree/arch/arm/plat-mxc/gpio-mvf.c?h=colibri_vf#n171"&gt;http://git.toradex.com/cgit/linux-toradex.git/tree/arch/arm/plat-mxc/gpio-mvf.c?h=colibri_vf#n171&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The driver upstream kernel driver explicitly does not change the input buffer, but leaves it up to the initial pinmux configuration whether the input buffer should be on or not (in our device trees we enable the input buffers for GPIO's):&lt;/P&gt;&lt;P&gt;&lt;A href="http://git.toradex.com/cgit/linux-toradex.git/tree/drivers/pinctrl/freescale/pinctrl-imx.c?h=toradex_vf_3.18#n337" title="http://git.toradex.com/cgit/linux-toradex.git/tree/drivers/pinctrl/freescale/pinctrl-imx.c?h=toradex_vf_3.18#n337"&gt;http://git.toradex.com/cgit/linux-toradex.git/tree/drivers/pinctrl/freescale/pinctrl-imx.c?h=toradex_vf_3.18#n337&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, this does not explain the stochastic behavior. Honestly, I currently don't know how why this happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 17:42:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341342#M3383</guid>
      <dc:creator>falstaff</dc:creator>
      <dc:date>2015-03-02T17:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341343#M3384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer! Maybe I can modify the driver to be able to read the input buffer, so that I can set the output as long as the correct value is available, but this is just a workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@&lt;SPAN class="n fn"&gt;Timesys Support: Can you check this issue and give feedback?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="n fn"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="n fn"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="n fn"&gt;Johannes&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Mar 2015 09:32:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341343#M3384</guid>
      <dc:creator>johannestraxler</dc:creator>
      <dc:date>2015-03-03T09:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341344#M3385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/timesyssupport"&gt;timesyssupport&lt;/A&gt;&amp;nbsp; can you&amp;nbsp; share your comments about this case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2015 18:52:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341344#M3385</guid>
      <dc:creator>karina_valencia</dc:creator>
      <dc:date>2015-03-06T18:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341345#M3386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-content-finding="Community" data-objectid="214905" data-objecttype="3" href="https://community.nxp.com/people/timesyssupport" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #6a737b; text-decoration: underline;"&gt;Timesys Support&lt;/A&gt;&lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp; do you have an update?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2015 21:54:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341345#M3386</guid>
      <dc:creator>karina_valencia</dc:creator>
      <dc:date>2015-03-09T21:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341346#M3387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;reminder&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-content-finding="Community" data-objectid="214905" data-objecttype="3" href="https://community.nxp.com/people/timesyssupport" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #6a737b; text-decoration: underline;"&gt;Timesys Support&lt;/A&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&amp;nbsp; do you have an update?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 15:00:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341346#M3387</guid>
      <dc:creator>karina_valencia</dc:creator>
      <dc:date>2015-03-13T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341347#M3388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our apologies for the delay in replying; our ping notifications have been silently bouncing on our end.&lt;/P&gt;&lt;P&gt;Our Vybrid kernel maintainers are reviewing, but as we have moved our Vybrid support to a 3.13 kernel, futher developments on the 3.0 kernel would need to be addressed as an engineering engagement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Timesys Support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 18:33:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341347#M3388</guid>
      <dc:creator>timesyssupport</dc:creator>
      <dc:date>2015-03-17T18:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341348#M3389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Timesys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it is currently not possible to build a 3.13 Kernel for "PHYTEC phyCORE Vybrid Development Kit/pcm052" in your build factory. It is no problem for us to switch to a newer kernel!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Johannes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Mar 2015 06:32:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341348#M3389</guid>
      <dc:creator>johannestraxler</dc:creator>
      <dc:date>2015-03-18T06:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Vybrid GPIO on /sys/class/gpio does not switch properly</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341349#M3390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Johannes,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We understand that Phytec is working to update their kernel support to the 3.13 release; until they have validated the kernel support, we will only be able to provide the 3.0 kernel. If you have a pressing need for this kernel release, we would suggest contacting Phytec to determine their roadmap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Timesys Support&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 11:22:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Vybrid-GPIO-on-sys-class-gpio-does-not-switch-properly/m-p/341349#M3390</guid>
      <dc:creator>timesyssupport</dc:creator>
      <dc:date>2015-03-19T11:22:27Z</dc:date>
    </item>
  </channel>
</rss>

