<?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>LPC MicrocontrollersのトピックRe: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1645929#M52434</link>
    <description>&lt;P&gt;Here is the best and latest sreaming application &lt;A title="HDO Box" href="https://hdoboxapk.net/" target="_self"&gt;HDO box&lt;/A&gt; is the free app. HDO Box provide new movies for all time&lt;/P&gt;</description>
    <pubDate>Sat, 06 May 2023 10:31:16 GMT</pubDate>
    <dc:creator>hdobox</dc:creator>
    <dc:date>2023-05-06T10:31:16Z</dc:date>
    <item>
      <title>LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1414441#M47921</link>
      <description>&lt;P&gt;Reading Chapter 19 (SSP ...) of the User Manual, my understanding of the usage is that I should configure to use SSP0 (say) as SPI, and then use code similar to this:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void SSP_SPI_SR(uint16_t* sendBuffer, uint16_t* recvBuffer, uint8_t length)
{
     uint8 len1 = length, len2 = length;
     
     // Ensure SSP receive FIFO is empty (by reading data out of it if necessary)
     while(SSP0SR &amp;amp; RNE) SSP0DR;

     IOCLR0 = 0x00100000;  // SSEL active (down)
     while(len1 || len2)
     {

           if (len1 &amp;amp;&amp;amp; (SSP0SR &amp;amp; TNF)) // Data to send and transmit FIFO isn’t full?
           {
                SSPODR = *sendBuffer++;
                len1--;
                //
                // add a wait loop here if need to prevent buffer underrun at slave
           }
           
           if (len2 &amp;amp;&amp;amp; (SSP0SR &amp;amp; RNE)) // Data to receive and receive FIFO has data available
           {
                *recvBuffer++ = SSP0DR;
                len2--;
           }

     }
     
     }
     IOSET0 = 0x00100000;  // SSEL inactive (up)
}

// Usage :

uint16_t pollSequence[9] = {0xEBEB, 0xEBEB, 0xEBEB,
                0xEBEB, 0xEBEB, 0xEBEB,
                0xEBEB, 0xEBEB, 0xFFFF};   

uint16_t pollReplies[9] = {0};

SSP_SPI_SR(pollSequence, pollReplies, 9);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;Is that right?&lt;/P&gt;&lt;P&gt;If so I'm puzzled! Using CPOL=1, CPHA=0. Section 19.5.2.4 explicitly says:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;However, in the case of continuous back-to-back transmissions, the SSEL signal must be&lt;BR /&gt;pulsed HIGH between each data word transfer. This is because the slave select pin&lt;BR /&gt;freezes the data in its serial peripheral register and does not allow it to be altered if the&lt;BR /&gt;CPHA bit is logic zero. Therefore the master device must raise the SSEL pin of the slave&lt;BR /&gt;device between each data transfer to enable the serial peripheral data write. On&lt;BR /&gt;completion of the continuous transfer, the SSEL pin is returned to its idle state one SCK&lt;BR /&gt;period after the last bit has been captured.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;But given that the FIFO is being used for data transmission, I don't understand how I am supposed to toggle *SSEL between transfers.&lt;/P&gt;&lt;P&gt;Help greatly appreciated.&lt;/P&gt;&lt;P&gt;Thanks, David&lt;/P&gt;</description>
      <pubDate>Wed, 16 Feb 2022 12:46:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1414441#M47921</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-02-16T12:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1415564#M47929</link>
      <description>&lt;P&gt;Anyone know the answer?&lt;/P&gt;</description>
      <pubDate>Thu, 17 Feb 2022 20:53:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1415564#M47929</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-02-17T20:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417340#M47963</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;How about refer to demo code how to config:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpc2000-arm7/arm7-with-512-kb-flash-98-kb-sram-ethernet-usb-2-0-device-host-otg-can-and-10-bit-adc:LPC2388FBD144?tab=Design_Tools_Tab" target="_blank"&gt;https://www.nxp.com/products/processors-and-microcontrollers/arm-microcontrollers/general-purpose-mcus/lpc2000-arm7/arm7-with-512-kb-flash-98-kb-sram-ethernet-usb-2-0-device-host-otg-can-and-10-bit-adc:LPC2388FBD144?tab=Design_Tools_Tab&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1645520085794.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/171341iEBFB5051FE7C3430/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1645520085794.png" alt="Alice_Yang_0-1645520085794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 08:55:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417340#M47963</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-02-22T08:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417406#M47964</link>
      <description>&lt;P&gt;Alice, I downloaded the code samples some time ago.&amp;nbsp; Please could I ask that you point me to the relevant sample that covers this specific question, as I didn't find one that seemed relevant.&lt;/P&gt;&lt;P&gt;Thanks, David&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 10:15:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417406#M47964</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-02-22T10:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417552#M47966</link>
      <description>&lt;P&gt;I am referring to document UM10211 which is the official User Manual for the LPC2388:&lt;/P&gt;&lt;P&gt;&lt;A title="LPC23XX User manual" href="https://www.nxp.com/webapp/Download?colCode=UM10211" target="_blank"&gt;LPC23XX User manual&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks for the pointer to the NXP forums I have posted there&lt;A href="https://hdo-box.com/" target="_self"&gt;.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Feb 2022 14:40:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1417552#M47966</guid>
      <dc:creator>fincherdavid</dc:creator>
      <dc:date>2022-02-22T14:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1418676#M47988</link>
      <description>&lt;P&gt;Still looking for an answer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;D.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 02:14:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1418676#M47988</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-02-24T02:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1419510#M48006</link>
      <description>&lt;P&gt;Hello David,&lt;/P&gt;
&lt;P&gt;I'm not familiar wit this chip, I meaning you can refer to the ssp&amp;nbsp; demo under&amp;nbsp;&lt;SPAN&gt;Sample Code Bundle.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 04:13:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1419510#M48006</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-02-25T04:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1419713#M48015</link>
      <description>&lt;P&gt;Please apply the little grey cells here and read my code snippet and quote from the manual.&amp;nbsp;&amp;nbsp; The messages to be transmitted are in the transmit FIFO and I have &lt;STRONG&gt;no control&lt;/STRONG&gt; over when they are sent, and AFAICT no way to toggle *SSEL &lt;STRONG&gt;between&lt;/STRONG&gt; messages.&amp;nbsp;&amp;nbsp; If there's a relevant code in the SSP sample I didn't see it so please point me to the relevant line of code (clearly I know how to manipulate *SSEL before putting messages into the xmit FIFO).&lt;/P&gt;</description>
      <pubDate>Fri, 25 Feb 2022 09:47:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1419713#M48015</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-02-25T09:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1426047#M48168</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try to config the SSEL pin as gpio function, then set to high or low.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 09:58:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1426047#M48168</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-03-10T09:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1426075#M48169</link>
      <description>&lt;P&gt;Think about this please. &amp;nbsp; Not a single reply has addressed the issue that I'm adding messages to a FIFO queue to be sent, and I cannot control when they are sent, and there's no obvious way to toggle *SSEL &lt;STRONG&gt;between&lt;/STRONG&gt; the transmission of one message and the next.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 10:29:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1426075#M48169</guid>
      <dc:creator>perdrix</dc:creator>
      <dc:date>2022-03-10T10:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1433243#M48326</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please test below code if possible:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;void&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SSP0Send&lt;/SPAN&gt;&lt;SPAN&gt;( BYTE *send_&lt;/SPAN&gt;&lt;SPAN&gt;buf&lt;/SPAN&gt;&lt;SPAN&gt;, BYTE *recv_buf, DWORD&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Length&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; DWORD i;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; BYTE Dummy = Dummy;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;for&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;( i =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;; i &amp;lt; Length; i++ )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/* Move on only if NOT busy and TX FIFO not full. */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;( (SSP0SR &amp;amp; (SSPSR_TNF|SSPSR_BSY)) != SSPSR_TNF );&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; SSP0DR = *send_buf;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; send_buf++;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;( (SSP0SR &amp;amp; (SSPSR_BSY|SSPSR_RNE)) != SSPSR_RNE );&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/* Whenever a byte is written, MISO FIFO counter increments, Clear FIFO&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; on MISO. Otherwise, when SSP0Receive() is called, previous data byte&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; is left in the FIFO. */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; *recv_buf = SSP0DR;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; recv_buf++&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;/* Wait until the Busy bit is cleared. */&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;while&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;( SSP0SR &amp;amp; SSPSR_BSY );&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;please also intialize the SSEL pin as GPIO with output mode.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;BR&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Alice&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 07:05:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1433243#M48326</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2022-03-24T07:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1645929#M52434</link>
      <description>&lt;P&gt;Here is the best and latest sreaming application &lt;A title="HDO Box" href="https://hdoboxapk.net/" target="_self"&gt;HDO box&lt;/A&gt; is the free app. HDO Box provide new movies for all time&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 10:31:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/1645929#M52434</guid>
      <dc:creator>hdobox</dc:creator>
      <dc:date>2023-05-06T10:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: LPC2388 Toggling *SSEL when using SSP0 for SPI communications</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/2052445#M57770</link>
      <description>&lt;P&gt;This communication converter I have applied to make video streaming app and it is awesome, HDO Box app is available for android, ios, firestick, pc and smart tv. Download it at &lt;A href="https://hdoboxplus.com/" target="_self"&gt;HDO Box website&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Feb 2025 02:08:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC2388-Toggling-SSEL-when-using-SSP0-for-SPI-communications/m-p/2052445#M57770</guid>
      <dc:creator>butmanufacturer</dc:creator>
      <dc:date>2025-02-27T02:08:07Z</dc:date>
    </item>
  </channel>
</rss>

