<?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: LPC54016 SPIFI seems to only read 2 bytes in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968204#M56961</link>
    <description>&lt;P&gt;Hi Pavel,&lt;/P&gt;&lt;P&gt;Yes, I'm using the Macronix MX25R6435F Flash part, since we are running at 1.8V&lt;/P&gt;&lt;P&gt;The spifi_dma_transfer example has an #if block that defines SPIFI commands depending on flash part, and I used the ones for&amp;nbsp;&lt;SPAN&gt;FLASH_MX25R. Everything works except for the READ command. opcode 0x6B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Since the program works if I change the read to a fast SPI read (opcode 0x0B) instead of QSPI read, I'm assuming the command that is in the example is wrong, since you probably never tested with the&amp;nbsp;MX25R parts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I've attached the datasheet for the Flash. Can you look at Section 10-14 on page 40 and see if you can work out why the command fails?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Glenn&lt;/P&gt;</description>
    <pubDate>Mon, 07 Oct 2024 22:56:11 GMT</pubDate>
    <dc:creator>andrewsglenn</dc:creator>
    <dc:date>2024-10-07T22:56:11Z</dc:date>
    <item>
      <title>LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1967501#M56956</link>
      <description>&lt;P&gt;HI.&lt;/P&gt;
&lt;P&gt;I'm running my application out of RAM, and need to store data to transmit in Flash, reading it our quickly into a RAM buffer and then sending it out to a device.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We're using a&amp;nbsp;MX25R6435FZNIL0 Flash, at 1.8V, so the maximum transfer speed is 80 MHz and I've sent the SPIFI clock to 48 MHz for safety.&lt;/P&gt;
&lt;P&gt;I copied code from the &lt;FONT face="courier new,courier"&gt;spifi_dma_transfer&lt;/FONT&gt; SDK example code using DMA to transfer data TO the Flash, and SPIFI memory mapping to read the data FROM flash. I copied the &lt;FONT face="courier new,courier"&gt;spifi_command_t&lt;/FONT&gt; array from the &lt;FONT face="courier new,courier"&gt;#elif&amp;nbsp;&lt;/FONT&gt;&lt;SPAN&gt;&lt;FONT face="courier new,courier"&gt;FLASH_MX25R&lt;/FONT&gt; block to match the flash we are using.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Erasing and writing&amp;nbsp;&lt;EM&gt;appear&amp;nbsp;&lt;/EM&gt;to work (as far as I can tell), but I'm having trouble with reading back. I issue the following commands to put the SPIFI in read mode&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;    SPIFI_ResetCommand(SPIFI0);

    SPIFI_SetMemoryCommand(SPIFI0, (spifi_command_t*)&amp;amp;command[READ]);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After these commands I can see the memory in the Memory window of MCUXpressoIDE (before it's just ????????), but only the first two bytes appear, the rest are 0xFFFFFFFF:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_0-1728233715609.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/302966i1F13D46B4F723DD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_0-1728233715609.png" alt="andrewsglenn_0-1728233715609.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;A &lt;FONT face="courier new,courier"&gt;memcpy()&lt;/FONT&gt; from the location shows the same, the first two bytes are read and the rest are 0xFF:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_1-1728233861163.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/302967i56C34E0298E315D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_1-1728233861163.png" alt="andrewsglenn_1-1728233861163.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I've tried looking at other regions, such as where I'd expect the program to be, and see the same thing, a sea of 0xFF with the occasional pair of non-FF bytes.&lt;/P&gt;
&lt;P&gt;Any ideas?&lt;/P&gt;
&lt;P&gt;Glenn&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Oct 2024 20:23:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1967501#M56956</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-10T20:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1967515#M56957</link>
      <description>&lt;P&gt;My init function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;static spifi_dma_handle_t my_flash_dma_handle;
static bool flash_initialized = false; 

enum my_errno flash_init(void) {
    if (flash_initialized) {
        return ERR_SUCCESS;
    }

    /* Reset SPIFI Device */
    RESET_PeripheralReset(kSPIFI_RST_SHIFT_RSTn);

    // SPIFI0_SPIFI_Handle has already been created by BOARD_InitPeripherals()
    /* Create a custom SPIFI DMA handle */
    SPIFI_TransferTxCreateHandleDMA(
        SPIFI0_PERIPHERAL,
        &amp;amp;my_flash_dma_handle,
        spifi_dma_callback,
        NULL,
        &amp;amp;SPIFI0_SPIFI_Handle);

    /* Enable Quad mode */
    enable_quad_mode();

    flash_initialized = true;

    return ERR_SUCCESS;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;enable_quad_mode()&lt;/FONT&gt; is the function from the sample, using 0x40 for&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;SPAN&gt;QUAD_MODE_VAL&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 Oct 2024 17:30:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1967515#M56957</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-06T17:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968021#M56959</link>
      <description>&lt;P&gt;Some progress: Quad mode read opcode 0x6B is not working, but I got it to work in fast read, opcode 0x0B:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;static const spifi_command_t command[] = {
    [QREAD] = {FLASH_PAGE_SIZE, false, kSPIFI_DataInput, 1, kSPIFI_CommandDataQuad, kSPIFI_CommandOpcodeAddrThreeBytes, 0x6B},
	[FAST_READ] = {FLASH_PAGE_SIZE, false, kSPIFI_DataInput, 1, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeAddrThreeBytes, 0x0B},
    [PROGRAM_PAGE] = {FLASH_PAGE_SIZE, false, kSPIFI_DataOutput, 0, kSPIFI_CommandOpcodeSerial, kSPIFI_CommandOpcodeAddrThreeBytes, 0x38},
    [GET_STATUS] = {1, false, kSPIFI_DataInput, 0, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeOnly, 0x05},
    [ERASE_SECTOR] = {0, false, kSPIFI_DataOutput, 0, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeAddrThreeBytes, 0x20},
    [WRITE_ENABLE] = {0, false, kSPIFI_DataOutput, 0, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeOnly, 0x06},
    [WRITE_DISABLE] = {0, false, kSPIFI_DataOutput, 0, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeOnly, 0x04},
    [WRITE_REGISTER] = {1, false, kSPIFI_DataOutput, 0, kSPIFI_CommandAllSerial, kSPIFI_CommandOpcodeOnly, 0x01}
};&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Looking at the data sheet I&amp;nbsp;&lt;EM&gt;think&lt;/EM&gt; the command is correct for QREAD, but if anyone can spot the problem I'd be very grateful. I got the values from the sample code provided with the SDK.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_0-1728319104434.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303113i8AA47465A1C80E46/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_0-1728319104434.png" alt="andrewsglenn_0-1728319104434.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 16:38:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968021#M56959</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-07T16:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968192#M56960</link>
      <description>&lt;P&gt;Hello, my name is Pavel, and I will be supporting your case, I reviewed your code, but this is not similar to the example SDK, I could not see the board Init pins, clocks and if you are using the debugger message in console.&lt;/P&gt;
&lt;P&gt;In this case I could not test on my side because the memory is different from the SDK.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 22:26:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968192#M56960</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-10-07T22:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968204#M56961</link>
      <description>&lt;P&gt;Hi Pavel,&lt;/P&gt;&lt;P&gt;Yes, I'm using the Macronix MX25R6435F Flash part, since we are running at 1.8V&lt;/P&gt;&lt;P&gt;The spifi_dma_transfer example has an #if block that defines SPIFI commands depending on flash part, and I used the ones for&amp;nbsp;&lt;SPAN&gt;FLASH_MX25R. Everything works except for the READ command. opcode 0x6B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Since the program works if I change the read to a fast SPI read (opcode 0x0B) instead of QSPI read, I'm assuming the command that is in the example is wrong, since you probably never tested with the&amp;nbsp;MX25R parts.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I've attached the datasheet for the Flash. Can you look at Section 10-14 on page 40 and see if you can work out why the command fails?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Glenn&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 22:56:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968204#M56961</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-07T22:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968206#M56962</link>
      <description>&lt;P&gt;Hello, this seems that the QE is not enable yet, could you please use a logic analyzer to review when is sending this message. I reviewed the datasheet and the 0x40 seems good to active the bit 6 to enable the QE.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 23:07:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968206#M56962</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-10-07T23:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968218#M56963</link>
      <description>&lt;P&gt;I'm calling &lt;FONT face="courier new,courier"&gt;enable_quad_mode()&lt;/FONT&gt; with the value 0x40, so it SHOULD be in quad mode.&lt;/P&gt;&lt;P&gt;I'll set up the Logic Analyzer.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Oct 2024 23:22:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1968218#M56963</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-07T23:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1969099#M56976</link>
      <description>&lt;P&gt;Output from logic analyzer. It appears the correct command is sent and then waits for the finish bit to clear.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_0-1728405990714.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303458iAD7DD7F400DF5D6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_0-1728405990714.png" alt="andrewsglenn_0-1728405990714.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 16:46:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1969099#M56976</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-08T16:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1969102#M56977</link>
      <description>&lt;P&gt;Quad mode write appears to work:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_0-1728406245765.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303459i52B83A5CB62FBC19/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_0-1728406245765.png" alt="andrewsglenn_0-1728406245765.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Read does something weird:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="andrewsglenn_1-1728406324957.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/303460i0D607BD97262EAB5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="andrewsglenn_1-1728406324957.png" alt="andrewsglenn_1-1728406324957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2024 16:52:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1969102#M56977</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-08T16:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1971524#M57012</link>
      <description>Any idea why quad write is working but quad read is not?</description>
      <pubDate>Thu, 10 Oct 2024 16:36:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1971524#M57012</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-10T16:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1974621#M57066</link>
      <description>&lt;P&gt;Hello, my apologize for the delayed response, I need more information about your case, could you tell me if the standard mode or the dual mode for the read still working as normal?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 22:01:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1974621#M57066</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-10-15T22:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1974643#M57069</link>
      <description>&lt;P&gt;Hi Pavel,&lt;/P&gt;&lt;P&gt;A single-channel SPI read is working, using the 'fast read' command opcode&amp;nbsp;&lt;SPAN&gt;0x0B.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As far as I could tell with the logic analyzer I'm sending the correct command to enable Quad Mode, but after sending the enable command, quad mode read (opcode 0x6B) gives back a garbage response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have not gotten dual mode read to work either, but I didn't try very hard.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Glenn&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2024 23:34:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1974643#M57069</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-15T23:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1977443#M57109</link>
      <description>&lt;P&gt;Hello, I recommend open an internal case, to upload the schematic of your board, to offer a analyze of this, because this is a custom board. Just put my name on it and I will take it.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Pavel&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 22:23:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1977443#M57109</guid>
      <dc:creator>Pavel_Hernandez</dc:creator>
      <dc:date>2024-10-18T22:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: LPC54016 SPIFI seems to only read 2 bytes</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1977444#M57110</link>
      <description>Done.</description>
      <pubDate>Fri, 18 Oct 2024 22:34:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC54016-SPIFI-seems-to-only-read-2-bytes/m-p/1977444#M57110</guid>
      <dc:creator>andrewsglenn</dc:creator>
      <dc:date>2024-10-18T22:34:38Z</dc:date>
    </item>
  </channel>
</rss>

