<?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: SPI configuration master/slave  S32K148 in S32K</title>
    <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863060#M3766</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Diana,&lt;/P&gt;&lt;P&gt;I was busy in office, thus sorry for replying only now.&lt;/P&gt;&lt;P&gt;Your example project works for me, thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As it turned out, I had a clocking issue.&amp;nbsp;The following lines were missing in my initialization of SPLL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCG-&amp;gt;SPLLCSR = SCG_SPLLCSR_SPLLEN(0);&lt;BR /&gt; SCG-&amp;gt;SPLLDIV = SCG_SPLLDIV_SPLLDIV1(2) | SCG_SPLLDIV_SPLLDIV2(4); /* SPLLDIV1 divide by 2; SPLLDIV2 divide by 4 */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Apr 2019 08:04:16 GMT</pubDate>
    <dc:creator>michael_kirches</dc:creator>
    <dc:date>2019-04-02T08:04:16Z</dc:date>
    <item>
      <title>SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863053#M3759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to configure LPSPI on S32K148 both for master and slave mode. For master I use LPSPI0, slave will be LPSPI1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my master configuration:&lt;/P&gt;&lt;P&gt;void SPI_master_init()&lt;BR /&gt;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;// LLSPI0&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;PCC-&amp;gt;PCCn[PCC_LPSPI0_INDEX] = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;// SPLLDIV2&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;PCC-&amp;gt;PCCn[PCC_LPSPI0_INDEX] = PCC_PCCn_PR(1) | PCC_PCCn_CGC(1) | PCC_PCCn_PCS(0b110);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;CR = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;IER = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;DER = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;CFGR0 = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;CFGR1 = LPSPI_CFGR1_MASTER(1);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;TCR = LPSPI_TCR_CPHA_MASK | LPSPI_TCR_PRESCALE(2) | LPSPI_TCR_PCS(3) | &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI_TCR_FRAMESZ(15);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;CCR = LPSPI_CCR_SCKPCS(4) | LPSPI_CCR_PCSSCK (9) | LPSPI_CCR_DBT(8) | &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI_CCR_SCKDIV(8);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;FCR = LPSPI_FCR_TXWATER(3) | LPSPI_FCR_RXWATER(0);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI0-&amp;gt;CR = LPSPI_CR_DBGEN(1) | LPSPI_CR_MEN(1);&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my slave configuration&lt;/P&gt;&lt;P&gt;void SPI_slave_init()&lt;BR /&gt;{&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;// LLSPI1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;PCC-&amp;gt;PCCn[PCC_LPSPI1_INDEX] = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;// SPLLDIV2&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;PCC-&amp;gt;PCCn[PCC_LPSPI1_INDEX] = PCC_PCCn_PR(1) | PCC_PCCn_CGC(1) | PCC_PCCn_PCS(0b110);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;CR = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;IER = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;DER = 0;&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;CFGR0 = 0;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;CFGR1 = LPSPI_CFGR1_MASTER(0) | LPSPI_CFGR1_AUTOPCS(1);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;TCR = LPSPI_TCR_CPHA(1) | LPSPI_TCR_PRESCALE(2) | LPSPI_TCR_PCS(3) | &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI_TCR_FRAMESZ(15);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;FCR = LPSPI_FCR_TXWATER(3) | LPSPI_FCR_RXWATER(0);&lt;BR /&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;LPSPI1-&amp;gt;CR = LPSPI_CR_DBGEN(1) | LPSPI_CR_MEN(1);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;During debugging, I cannot see that register TCR is changing, but I can see, that data words are being transmitted to FIFOs. To be more precise on 'TCR is not changing', I had a look in the resigters view of S32 Design Studio and never saw any other value but the reset value for that register. Things are the same both for master and slave configuration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is: How can I check, that TCR is set correctly?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see from my code, I do not use the S32 SDK by purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help resolving that issue would be appriciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Mar 2019 11:51:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863053#M3759</guid>
      <dc:creator>michael_kirches</dc:creator>
      <dc:date>2019-03-28T11:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863054#M3760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to mention a few&amp;nbsp;details from the RM rev. 9.:&lt;/P&gt;&lt;P&gt;1.&lt;/P&gt;&lt;P&gt;"Avoid register reading problems: Reading the Transmit Command Register will return&lt;BR /&gt;the current state of the command register. Reading the Transmit Command Register at the&lt;BR /&gt;same time that the Transmit Command Register is loaded from the transmit FIFO, can&lt;BR /&gt;return an incorrect Transmit Command Register value. It is recommended:&lt;BR /&gt;• to either read the Transmit Command Register when the transmit FIFO is empty,&lt;BR /&gt;• or to read the Transmit Command Register more than once and then compare the&lt;BR /&gt;returned values."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"49.4.3 Slave Mode&lt;/STRONG&gt;&lt;BR /&gt;LPSPI slave mode:&lt;BR /&gt;• uses the same shift register and logic that master mode uses&lt;BR /&gt;&lt;STRONG&gt;• does not use the Clock Configuration Register (CCR)&lt;/STRONG&gt;&lt;BR /&gt;• during SPI bus transfers, requires that the Transmit Command Register (TCR)&lt;BR /&gt;remain static (unchanging)"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After initialization, you can look at the register setting in the S32DS and see that the TCR register is set.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/64431iF793ACA99677EE40/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Mar 2019 13:21:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863054#M3760</guid>
      <dc:creator>dianabatrlova</dc:creator>
      <dc:date>2019-03-29T13:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863055#M3761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Diana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for your reply. I only returned to office today, so I could not do any further tests yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You mentioned in your post, that the register view in S32DS should reflect the correct state of the TCR register. As I did write in my post, that I already had a look in that view, I wonder how it is possible, that the register value is always displayed as 0x1F (the reset value) after initialization? I already tried to read TCR multiple times as suggested in RM, but that did not change anything..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you provide some demo code, which initializes SPI master and slave without usage of the SDK?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you and&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 06:31:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863055#M3761</guid>
      <dc:creator>michael_kirches</dc:creator>
      <dc:date>2019-04-01T06:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863056#M3762</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;You can take a look over this cookbook. It is designed to S32K144, but you can easily port it to S32K148.&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://www.nxp.com/docs/en/application-note/AN5413.pdf" title="https://www.nxp.com/docs/en/application-note/AN5413.pdf"&gt;https://www.nxp.com/docs/en/application-note/AN5413.pdf&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Razvan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 12:09:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863056#M3762</guid>
      <dc:creator>razva_tilimpea</dc:creator>
      <dc:date>2019-04-01T12:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863057#M3763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LPSPI master example for the S32K144 is available in the S32DS -&amp;gt;&amp;nbsp;file -&amp;gt; new-&amp;gt; S32DS Projet from Example.&lt;/P&gt;&lt;P&gt;So, I have tried&amp;nbsp;to add the LPSPI slave into this example. And it's working for me. (see attachment)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LPSPI1 is configured as Master and LPSPI0 is configured as Slave.&lt;BR /&gt;Master and Slave transmit 0xFD00 value and also both receive&amp;nbsp;this value.&lt;BR /&gt;Is needed to connect pins:&amp;nbsp;&lt;BR /&gt;PTD0&amp;nbsp;with PTB2&lt;BR /&gt;PTD1 with PTB4&lt;BR /&gt;PTD2 with&amp;nbsp;PTB1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have not a problem&amp;nbsp;with reading of this register. However, I would like to recommend&amp;nbsp;you do not read this register. I'm not sure why you need to read the TCR register.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope it helps.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 12:37:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863057#M3763</guid>
      <dc:creator>dianabatrlova</dc:creator>
      <dc:date>2019-04-01T12:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863058#M3764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Diana,&lt;/P&gt;&lt;P&gt;hello&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Razvan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I did have a look at the cookbook, which and tried to adapt it to the situation Diana described. However, I could not send any data and started to track down the issue. What I directly saw was that TCR is not being updated, so this is why I started this thread.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;I will try to get Diana's example running, but it looks pretty much the same, I already tried.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f; "&gt;Best Regads,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff; color: #51626f; "&gt;Michael&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 13:24:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863058#M3764</guid>
      <dc:creator>michael_kirches</dc:creator>
      <dc:date>2019-04-01T13:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863059#M3765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have more projects for different MCU so, I made a mistake in the connection description.&lt;/P&gt;&lt;P&gt;Please, see the connection update:&lt;/P&gt;&lt;P&gt;PTD0&amp;nbsp;with PTB2&lt;BR /&gt;PTD1 with PTB1&lt;BR /&gt;PTD2 with&amp;nbsp;PTB3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does it work?&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Diana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Apr 2019 13:48:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863059#M3765</guid>
      <dc:creator>dianabatrlova</dc:creator>
      <dc:date>2019-04-01T13:48:12Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863060#M3766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Diana,&lt;/P&gt;&lt;P&gt;I was busy in office, thus sorry for replying only now.&lt;/P&gt;&lt;P&gt;Your example project works for me, thank you very much!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As it turned out, I had a clocking issue.&amp;nbsp;The following lines were missing in my initialization of SPLL:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCG-&amp;gt;SPLLCSR = SCG_SPLLCSR_SPLLEN(0);&lt;BR /&gt; SCG-&amp;gt;SPLLDIV = SCG_SPLLDIV_SPLLDIV1(2) | SCG_SPLLDIV_SPLLDIV2(4); /* SPLLDIV1 divide by 2; SPLLDIV2 divide by 4 */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Apr 2019 08:04:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/863060#M3766</guid>
      <dc:creator>michael_kirches</dc:creator>
      <dc:date>2019-04-02T08:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: SPI configuration master/slave  S32K148</title>
      <link>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/1149246#M8088</link>
      <description>&lt;P&gt;Hi Diana,&lt;/P&gt;&lt;P&gt;I tried running the code in s32k148 but the data is not received in the receive data variable as Rx buffer always reads 0. I have a query can we configure one peripheral as master and one as slave in the same device as the transmit and receive data register addresses remain same for all LPSPIs.&lt;/P&gt;&lt;P&gt;Please help me with this issue.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saikumar&lt;/P&gt;</description>
      <pubDate>Sat, 05 Sep 2020 11:26:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-configuration-master-slave-S32K148/m-p/1149246#M8088</guid>
      <dc:creator>saikumar</dc:creator>
      <dc:date>2020-09-05T11:26:53Z</dc:date>
    </item>
  </channel>
</rss>

