<?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 imx6sx - mrf24j40 - udooneo - devicetree in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734921#M114381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having trouble setting my device tree to use the MRF24J40 linux driver on my UDOO Neo Full board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using this kernel :&amp;nbsp;&lt;A class="link-titled" href="https://github.com/fmntf/linux_kernel" title="https://github.com/fmntf/linux_kernel"&gt;GitHub - fmntf/linux_kernel: Kernel Linux Repository for UDOO&lt;/A&gt;&amp;nbsp;&amp;nbsp;on branch 4.1.5_2.x-udoo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following configuration in&amp;nbsp;imx6sx-udoo-neo-externalpins.dtsi (Device Tree used : /boot/imx6sx-udoo-neo-full-lvds7.dtb)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_CLK__GPIO6_IO_12 0x80000000 // {{external-gpio-20}}&lt;BR /&gt; //MX6SX_PAD_SD4_CMD__GPIO6_IO_13 0x80000000 // {{external-gpio-21}}&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_DATA1__GPIO6_IO_15 0x80000000 // {{external-gpio-38}}&lt;BR /&gt; //MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x80000000 // {{external-gpio-39}}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pinctrl_ecspi2: ecspi2grp {&lt;BR /&gt; fsl,pins = &amp;lt;&lt;BR /&gt; MX6SX_PAD_SD4_CLK__ECSPI2_MISO 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_CMD__ECSPI2_MOSI 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_DATA1__ECSPI2_SCLK 0x100b1&lt;BR /&gt; /* CS SPI 1 */&lt;BR /&gt; MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x0b0b1&lt;BR /&gt; &amp;gt;;&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;ecspi2 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;cs-gpios = &amp;lt;&amp;amp;gpio6 14 GPIO_ACTIVE_LOW&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-names = "default";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;status = "okay";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#address-cells = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#size-cells = &amp;lt;0&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;mrf24j40@0 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;compatible = "mrf24j40";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;reg = &amp;lt;0&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;spi-max-frequency = &amp;lt;1000000&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupt-parent = &amp;lt;&amp;amp;gpio1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupts = &amp;lt;17 8&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;};&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that the SPI bus isn't fully working then. With an oscilloscope, I can see correct messages on the MOSI, CLK and CS wires, the IRQ is setted but I have &lt;STRONG&gt;nothing on the MISO wire&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INT pin of the MRF24J40 is wired (hard) on GPIO_17 (29) of the Udoo Neo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A friend developped in the past a custom driver for the mrf24j40&amp;nbsp;which worked&amp;nbsp;with spidev. It was working. I tested today with this driver and his old device tree configuration and everything works. But we have to use this standard driver now as his driver is limited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know what I messed in my configuration ? It would save my life :smileyhappy:&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;Jo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2018 16:07:43 GMT</pubDate>
    <dc:creator>carton</dc:creator>
    <dc:date>2018-05-08T16:07:43Z</dc:date>
    <item>
      <title>imx6sx - mrf24j40 - udooneo - devicetree</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734921#M114381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having trouble setting my device tree to use the MRF24J40 linux driver on my UDOO Neo Full board.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using this kernel :&amp;nbsp;&lt;A class="link-titled" href="https://github.com/fmntf/linux_kernel" title="https://github.com/fmntf/linux_kernel"&gt;GitHub - fmntf/linux_kernel: Kernel Linux Repository for UDOO&lt;/A&gt;&amp;nbsp;&amp;nbsp;on branch 4.1.5_2.x-udoo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following configuration in&amp;nbsp;imx6sx-udoo-neo-externalpins.dtsi (Device Tree used : /boot/imx6sx-udoo-neo-full-lvds7.dtb)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_CLK__GPIO6_IO_12 0x80000000 // {{external-gpio-20}}&lt;BR /&gt; //MX6SX_PAD_SD4_CMD__GPIO6_IO_13 0x80000000 // {{external-gpio-21}}&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_DATA1__GPIO6_IO_15 0x80000000 // {{external-gpio-38}}&lt;BR /&gt; //MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x80000000 // {{external-gpio-39}}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pinctrl_ecspi2: ecspi2grp {&lt;BR /&gt; fsl,pins = &amp;lt;&lt;BR /&gt; MX6SX_PAD_SD4_CLK__ECSPI2_MISO 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_CMD__ECSPI2_MOSI 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_DATA1__ECSPI2_SCLK 0x100b1&lt;BR /&gt; /* CS SPI 1 */&lt;BR /&gt; MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x0b0b1&lt;BR /&gt; &amp;gt;;&lt;BR /&gt; };&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;ecspi2 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;cs-gpios = &amp;lt;&amp;amp;gpio6 14 GPIO_ACTIVE_LOW&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-names = "default";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;status = "okay";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#address-cells = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#size-cells = &amp;lt;0&amp;gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;mrf24j40@0 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;compatible = "mrf24j40";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;reg = &amp;lt;0&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;spi-max-frequency = &amp;lt;1000000&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupt-parent = &amp;lt;&amp;amp;gpio1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupts = &amp;lt;17 8&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;};&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is that the SPI bus isn't fully working then. With an oscilloscope, I can see correct messages on the MOSI, CLK and CS wires, the IRQ is setted but I have &lt;STRONG&gt;nothing on the MISO wire&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INT pin of the MRF24J40 is wired (hard) on GPIO_17 (29) of the Udoo Neo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A friend developped in the past a custom driver for the mrf24j40&amp;nbsp;which worked&amp;nbsp;with spidev. It was working. I tested today with this driver and his old device tree configuration and everything works. But we have to use this standard driver now as his driver is limited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know what I messed in my configuration ? It would save my life :smileyhappy:&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;Jo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2018 16:07:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734921#M114381</guid>
      <dc:creator>carton</dc:creator>
      <dc:date>2018-05-08T16:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: imx6sx - mrf24j40 - udooneo - devicetree</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734922#M114382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in master mode MISO wire should be diven by MRF24J40, one can&lt;/P&gt;&lt;P&gt;check if it was correctly initialized. I.MX6SX eCSPI interface can be tested with&lt;/P&gt;&lt;P&gt;unit tests (../mxc_spi_test)&lt;/P&gt;&lt;P&gt;imx-test&lt;BR /&gt;&lt;A href="https://community.nxp.com/www.nxp.com/lgfiles/NMG/MAD/YOCTO/imx-test-5.7.tar.gz" target="test_blank"&gt;www.nxp.com/lgfiles/NMG/MAD/YOCTO/imx-test-5.7.tar.gz&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;igor&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 01:44:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734922#M114382</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2018-05-09T01:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: imx6sx - mrf24j40 - udooneo - devicetree</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734923#M114383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Igor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked the source code of the mxc_spi_test. It's meant to test SPI buses 'used with' spidev. Am I right ? So i can't use it if spidev is disabled in my devicetree ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I forgot a part of my device tree. The mrf24j40 driver don't use spidev and you can see below my edited devicetree (&lt;STRONG&gt;modifications in bold&lt;/STRONG&gt;) that I actually use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_CLK__GPIO6_IO_12 0x80000000 // {{external-gpio-20}}&lt;BR /&gt; //MX6SX_PAD_SD4_CMD__GPIO6_IO_13 0x80000000 // {{external-gpio-21}}&lt;/P&gt;&lt;P&gt;//MX6SX_PAD_SD4_DATA1__GPIO6_IO_15 0x80000000 // {{external-gpio-38}}&lt;BR /&gt; //MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x80000000 // {{external-gpio-39}}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;pinctrl_ecspi2: ecspi2grp {&lt;BR /&gt; fsl,pins = &amp;lt;&lt;BR /&gt; MX6SX_PAD_SD4_CLK__ECSPI2_MISO 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_CMD__ECSPI2_MOSI 0x100b1&lt;BR /&gt; MX6SX_PAD_SD4_DATA1__ECSPI2_SCLK 0x100b1&lt;BR /&gt; /* CS SPI 1 */&lt;BR /&gt; MX6SX_PAD_SD4_DATA0__GPIO6_IO_14 0x0b0b1&lt;BR /&gt; &amp;gt;;&lt;BR /&gt; };&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* ... */&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;amp;ecspi2 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;fsl,spi-num-chipselects = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;cs-gpios = &amp;lt;&amp;amp;gpio6 14 GPIO_ACTIVE_LOW&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-names = "default";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;pinctrl-0 = &amp;lt;&amp;amp;pinctrl_ecspi2&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;status = "okay";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#address-cells = &amp;lt;1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;#size-cells = &amp;lt;0&amp;gt;;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;spidev0: spi@0 {&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;status = "disabled";&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;};&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;mrf24j40@0 {&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;compatible = "mrf24j40";&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;reg = &amp;lt;0&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;spi-max-frequency = &amp;lt;1000000&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupt-parent = &amp;lt;&amp;amp;gpio1&amp;gt;;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;interrupts = &amp;lt;17 8&amp;gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;};&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for my noob questions. I'm kinda lost here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;The mrf24j40 module is recognized and probe() is done. But the driver get stuck on "&lt;SPAN class=""&gt;Timeout waiting for TX interrupt&lt;/SPAN&gt;" (cf. &lt;A class="jivelink1" href="https://bit.ly/2rwQ596" title="https://bit.ly/2rwQ596"&gt;https://bit.ly/2rwQ596&lt;/A&gt; l.365) as soon as I try to configure it with wpan-tools and then do a 'ip link set wpan0 up').&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2018 17:59:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734923#M114383</guid>
      <dc:creator>carton</dc:creator>
      <dc:date>2018-05-09T17:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: imx6sx - mrf24j40 - udooneo - devicetree</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734924#M114384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved my problem. The issue did not come from the device tree. It was related to the mrf24j40 driver itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 11:44:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/imx6sx-mrf24j40-udooneo-devicetree/m-p/734924#M114384</guid>
      <dc:creator>carton</dc:creator>
      <dc:date>2018-05-14T11:44:32Z</dc:date>
    </item>
  </channel>
</rss>

