<?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: KE06Z SPI strange behavior in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786436#M47858</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your updated information.&lt;/P&gt;&lt;P&gt;I don't know you are using the NMI pin. NMI, reset, swd_clk, swd_dat is the special pin, it is indefault as the special function, not the GPIO, so if you are using the NMI pin as SPI pin, you need to disable the NMI function in the register by yourself at first, otherwise, the code will enter the NMI interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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, 05 Sep 2018 08:17:06 GMT</pubDate>
    <dc:creator>kerryzhou</dc:creator>
    <dc:date>2018-09-05T08:17:06Z</dc:date>
    <item>
      <title>KE06Z SPI strange behavior</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786432#M47854</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 really stuck with an issue I'm experiencing. I'm interfacing a Kinetis MKE06Z with a Microchip MCP23S17 I/O Expander. I have created the library for reading inputs, wich works perfectly when debugging (with a Segger SWD interface). If I restart my device, by disconnecting its power and connecting it again, signals are still the same (I'm attaching an image on this condition that I've got with my logic analizer), but the peripheral gets no data (I'm reading the inputs though a UART interface). I have no clue why is this happening. I've already checked every configuration (even in this condition everything is fine, as I'm sending it through the UART to verify it).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="spi_mke.jpg"&gt;&lt;IMG alt="spi_mke.jpg" src="https://community.nxp.com/t5/image/serverpage/image-id/67974i3E8E40323EE9D6F0/image-size/large?v=v2&amp;amp;px=999" title="spi_mke.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm also using another MCP23S17 for outputs, and it works fine, as I'm not reading any data from it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me&amp;nbsp;solve this issue, as it is stopping a product development and it never happened to me before (it's not the first time I'm using both MCP23S17 nor MKE06Z)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: This is the reading routine, for more information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;uint8_t &lt;SPAN class="token function"&gt;ExpIODInRead&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;uint8_t gpioPort&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="property macro token"&gt;#pragma diag_suppress=Pe550&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; uint8_t dummy&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; uint16_t aux&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="property macro token"&gt;#pragma diag_warning=Pe550&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; aux &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;aux&lt;SPAN class="operator token"&gt;--&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPTEF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;aux &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;ExpIO_CS_Enable&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPI0_D &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; EXPIO_CMD_RD&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPRF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dummy &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; SPI0_D&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPTEF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPI0_D &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; gpioPort&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPRF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dummy &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; SPI0_D&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPTEF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPI0_D &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;while&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;SPI0_S &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; SPI_S_SPRF_MASK&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dummy &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; SPI0_D&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;ExpIO_CS_Disable&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; dummy &lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2020 14:09:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786432#M47854</guid>
      <dc:creator>ngiussani</dc:creator>
      <dc:date>2020-11-02T14:09:04Z</dc:date>
    </item>
    <item>
      <title>Re: KE06Z SPI strange behavior</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786433#M47855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicolas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; No data means the MKE06Z don't get the useful SPI data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please also tell me KE06 is the master or the slaver?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If it is the master, from your attached logic analyzer wave, I find your MISO data is just 0XFF, 0XFF 0XF5;&amp;nbsp;&amp;nbsp; 0XFF, 0XFF 0XFF.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Please check the MISO, is it what you needed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Please also share the SPI wave under the debugger mode(which works OK), then you also can check the MISO, is it also the same data as the none debugger mode？&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; If the data is not the same, I think you also can check the oscilloscope wave, check the voltage.&lt;/P&gt;&lt;P&gt;&amp;nbsp; Besides, in the MKE06 initialization for SPI, please also enable the SPI pin pull up, then try it again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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>Tue, 04 Sep 2018 08:23:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786433#M47855</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-04T08:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: KE06Z SPI strange behavior</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786434#M47856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kerry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer. I don't get the "&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;No data means the MKE06Z don't get the useful SPI data&lt;/SPAN&gt;", as we can see useful data (0xF5 and 0xFF&amp;nbsp;when MOSI is 0x00). When I'm debugging it is there. And it's working just fine, with the exact same data and signals in both cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course, as it is a peripheral, SPI is in Master Mode. Also, just for clarifying, baud rate is way lower than the maximum admitted by the peripheral.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I mentioned, SPI wave is exactly the same. I already checked with an osciloscope and there is nothing wrong, and levels are just fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enabling pull-ups was one of the things I tried, but nothing changed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is very frustrating, as I have both SPI channels enabled, and I have no trouble with the other one, that is writing and reading a Flash Memory and a RTCC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 12:05:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786434#M47856</guid>
      <dc:creator>ngiussani</dc:creator>
      <dc:date>2018-09-04T12:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: KE06Z SPI strange behavior</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786435#M47857</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;After reviewing documentation once and again, I finally solved the issue. The MISO pin is by default assigned to the NMI_b function. The thing is, under debug, somehow, it is correctly assigned to the MISO function, but when the device is switched off and back on, it resets to that default value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recognize my mistake, but I have to say that documentation is very confusing and you have to browse it back and forth&amp;nbsp;to find everything you need to make something work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Kerry for your support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2018 15:48:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786435#M47857</guid>
      <dc:creator>ngiussani</dc:creator>
      <dc:date>2018-09-04T15:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: KE06Z SPI strange behavior</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786436#M47858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your updated information.&lt;/P&gt;&lt;P&gt;I don't know you are using the NMI pin. NMI, reset, swd_clk, swd_dat is the special pin, it is indefault as the special function, not the GPIO, so if you are using the NMI pin as SPI pin, you need to disable the NMI function in the register by yourself at first, otherwise, the code will enter the NMI interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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, 05 Sep 2018 08:17:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/KE06Z-SPI-strange-behavior/m-p/786436#M47858</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-09-05T08:17:06Z</dc:date>
    </item>
  </channel>
</rss>

