<?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>MCUXpresso SDKのトピックRe: Available modes for peripherals configuration</title>
    <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007839#M2057</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you as well for your support on the matter. I'll wait for the other team's response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Razvan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Nov 2019 09:12:58 GMT</pubDate>
    <dc:creator>constantinrazva</dc:creator>
    <dc:date>2019-11-13T09:12:58Z</dc:date>
    <item>
      <title>Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007831#M2049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;We are working with the SDK_2.6.2 version for MIMXRT1062xxxxA processor on a MIMXRT1060-EVK and I have a few questions regarding the available configuration modes for peripherals inside MCUXpresso Config Tools.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;For example, each instance of the LPSPI peripheral has 5 user configurable modes (Polling, Interrupts, Transfer, eDMA and FreeRTOS). I have understood from the API Reference Manual that the Polling mode requires the use of the transfer blocking functions, while an Interrupt mode uses a non blocking data transfer.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;However, when using a TransferNonBlocking function, the structure named handle, passed as a second parameter to the function, has fields which are configurable inside the Transfer tab only (e.g: Continuous PCS signal or Swap bytes option in case of a Slave instance). If in Interrupt mode, how can I change the default values for these fields inside MCUXpresso Config Tools?&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Is the Transfer mode used only for a blocking type of data transfer? If not in Interrupt mode, the generated code in the peripherals.c file does not include the call of the EnableIRQ function.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Could you briefly explain each mode - I'd like to know what use-cases they have.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Irina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Nov 2019 14:43:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007831#M2049</guid>
      <dc:creator>Irina_Costachescu</dc:creator>
      <dc:date>2019-11-05T14:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007832#M2050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Irina,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, sorry for the later reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About Interrupt transfer mode, there with a demo named [interrupt_b2b\master] with below path:&lt;/P&gt;&lt;P&gt;&amp;nbsp;..\boards\evkmimxrt1060\driver_examples\lpspi\interrupt_b2b\master&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will call below structure to define master configuration, such as:&lt;/P&gt;&lt;P&gt;/*Master config*/&lt;BR /&gt; masterConfig.baudRate = TRANSFER_BAUDRATE;&lt;BR /&gt; masterConfig.bitsPerFrame = 8;&lt;BR /&gt; masterConfig.cpol = kLPSPI_ClockPolarityActiveHigh;&lt;BR /&gt; masterConfig.cpha = kLPSPI_ClockPhaseFirstEdge;&lt;BR /&gt; masterConfig.direction = kLPSPI_MsbFirst;&lt;/P&gt;&lt;P&gt;masterConfig.pcsToSckDelayInNanoSec = 1000000000 / masterConfig.baudRate;&lt;BR /&gt; masterConfig.lastSckToPcsDelayInNanoSec = 1000000000 / masterConfig.baudRate;&lt;BR /&gt; masterConfig.betweenTransferDelayInNanoSec = 1000000000 / masterConfig.baudRate;&lt;/P&gt;&lt;P&gt;masterConfig.whichPcs = EXAMPLE_LPSPI_MASTER_PCS_FOR_INIT;&lt;BR /&gt; masterConfig.pcsActiveHighOrLow = kLPSPI_PcsActiveLow;&lt;/P&gt;&lt;P&gt;masterConfig.pinCfg = kLPSPI_SdiInSdoOut;&lt;BR /&gt; masterConfig.dataOutConfig = kLpspiDataOutRetained;&lt;/P&gt;&lt;P&gt;srcClock_Hz = LPSPI_MASTER_CLK_FREQ;&lt;BR /&gt; LPSPI_MasterInit(EXAMPLE_LPSPI_MASTER_BASEADDR, &amp;amp;masterConfig, srcClock_Hz);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As my understanding about Transfer mode, which is a higher level of polling/interrupt/DMA mode.&lt;/P&gt;&lt;P&gt;In fact, Transfer mode still need to call one of&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;polling/interrupt/DMA mode related transactional API function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for the attention.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 08:53:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007832#M2050</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2019-11-08T08:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007833#M2051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;Hui_Ma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have another question regarding this topic - why can't we use continuous mode on SPI in interrupt mode (only available in transfer mode) ?&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/93462iA09C50010D901113/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing something? How can we achieve that functionality with only these settings available?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for answering to these questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Razvan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Nov 2019 14:18:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007833#M2051</guid>
      <dc:creator>constantinrazva</dc:creator>
      <dc:date>2019-11-08T14:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007834#M2052</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 think the LPSPI component Mode setting is correct.&lt;/P&gt;&lt;P&gt;The SDK peripheral drivers has two level functional APIs:&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/79905i600568AD1FBE5D0F/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The Transfer mode using transcational API, which based on LPSPI driver provided&amp;nbsp;&lt;/P&gt;&lt;P&gt;LPSPI_MasterTransferBlocking() or&amp;nbsp;LPSPI_MasterTransferNonBlocking() API functions.&lt;/P&gt;&lt;P&gt;So, the Continuous SCK available for transfer mode.&lt;/P&gt;&lt;P&gt;While, the interrupt and polling mode, just provide low level function API, customer need to write their required transcational API based low-level driver. So, customer need to enable continuous SCK feature with their transactional API function manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Mike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Nov 2019 06:52:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007834#M2052</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2019-11-12T06:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007835#M2053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hui_Ma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you are saying that MCUX with CT does not let you work in interrupt mode and also have all the options available - am I right? Let me explain why I find that curious - as you said, 'transfer mode' is on a higher level API than 'interrupt mode' so, for me at least, it makes more sense to have the same or even more hardware options available as you go lower (although I understand that higher level abstraction can sometimes mean less fine grain control).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Razvan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Nov 2019 08:42:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007835#M2053</guid>
      <dc:creator>constantinrazva</dc:creator>
      <dc:date>2019-11-12T08:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007836#M2054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Razvan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you check MCUXpresso CT tool generated code with LPSPI interrupts mode, which using below LPSPI init functinon:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void LPSPI_1_init(void) {&lt;BR /&gt; LPSPI_MasterInit(LPSPI_1_PERIPHERAL, &amp;amp;LPSPI_1_config, LPSPI_1_CLOCK_FREQ);&lt;BR /&gt; /* Enable interrupt LPSPI1_IRQn request in the NVIC */&lt;BR /&gt; EnableIRQ(LPSPI_1_IRQN);&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It just do the LPSPI initialization and enable LPSPI related IRQ at NVIC.&lt;/P&gt;&lt;P&gt;So, cusotmer also still need to&amp;nbsp;call &amp;lt;fsl_lpspi.c&amp;gt; &amp;amp; &amp;lt;fsl_lpspi.h&amp;gt; driver to realise the data transfer.&lt;/P&gt;&lt;P&gt;Just as [lpspi_interrupt_b2b_master] demo showed, when using MCUXpresso CT generated interrupt mode code,&lt;/P&gt;&lt;P&gt;customer need to call below code to do data transfer:&lt;/P&gt;&lt;P&gt;/*TCR is also shared the FIFO , so wait for TCR written.*/&lt;BR /&gt; while (LPSPI_GetTxFifoCount(EXAMPLE_LPSPI_MASTER_BASEADDR) != 0)&lt;BR /&gt; {&lt;BR /&gt; }&lt;BR /&gt; /*Fill up the TX data in FIFO */&lt;BR /&gt; while ((LPSPI_GetTxFifoCount(EXAMPLE_LPSPI_MASTER_BASEADDR) &amp;lt; g_masterFifoSize) &amp;amp;&amp;amp;&lt;BR /&gt; (masterTxCount - masterRxCount &amp;lt; g_masterFifoSize))&lt;BR /&gt; {&lt;BR /&gt; /*Write the word to TX register*/&lt;BR /&gt; LPSPI_WriteData(EXAMPLE_LPSPI_MASTER_BASEADDR, masterTxData[masterTxCount]);&lt;BR /&gt; ++masterTxCount;&lt;/P&gt;&lt;P&gt;if (masterTxCount == TRANSFER_SIZE)&lt;BR /&gt; {&lt;BR /&gt; break;&lt;BR /&gt; }&lt;BR /&gt; }&lt;BR /&gt; LPSPI_EnableInterrupts(EXAMPLE_LPSPI_MASTER_BASEADDR, kLPSPI_RxInterruptEnable);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel had written a document to show how to using [peripheral] component with MCUXpresso CT tool:&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-341986"&gt;https://community.nxp.com/docs/DOC-341986&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Wish it helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Mike&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2019 07:27:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007836#M2054</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2019-11-13T07:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007837#M2055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hello Hui_Ma,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN style="color: #51626f;"&gt;I think you misunderstood me - I am saying that you &lt;/SPAN&gt;&lt;STRONG style="color: #51626f;"&gt;can&lt;/STRONG&gt;&lt;SPAN style="color: #51626f;"&gt; use spi interrupt mode, but you &lt;/SPAN&gt;&lt;STRONG style="color: #51626f;"&gt;don't have access to all settings for it, like enabling continuous mode.&lt;/STRONG&gt;&lt;SPAN style="color: #51626f;"&gt; I am not sure what you wanted to show with the code snippets or with Daniel Chen's document - which I like, but does not help in clarifying the &lt;/SPAN&gt;&lt;EM style="color: #51626f; "&gt;spi interrupt mode &lt;/EM&gt;&lt;SPAN style="color: #51626f;"&gt;-&lt;/SPAN&gt;&lt;EM style="color: #51626f; "&gt;&amp;nbsp;&lt;SPAN style="font-size: 15px;"&gt;continuous&lt;/SPAN&gt;&amp;nbsp;mode enabling&lt;/EM&gt;&lt;SPAN style="color: #51626f;"&gt; problem.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Kind regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Razvan.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2019 08:27:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007837#M2055</guid>
      <dc:creator>constantinrazva</dc:creator>
      <dc:date>2019-11-13T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007838#M2056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Razvan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for highlighting the [continuous chip select mode enaaling] option with LPSPI interrupt mode.&lt;/P&gt;&lt;P&gt;I need to check that feature with MCUXpresso CT tool design team.&lt;/P&gt;&lt;P&gt;I will update when there with any feedback. Thanks for the patience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2019 09:08:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007838#M2056</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2019-11-13T09:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007839#M2057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you as well for your support on the matter. I'll wait for the other team's response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Razvan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Nov 2019 09:12:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007839#M2057</guid>
      <dc:creator>constantinrazva</dc:creator>
      <dc:date>2019-11-13T09:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Available modes for peripherals configuration</title>
      <link>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007840#M2058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Razvan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I forward an email about this topic, you could check the feedback from MCUXpresso Config Tool design team. Thanks.&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/92421iA738D791F1311E38/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2019 00:45:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MCUXpresso-SDK/Available-modes-for-peripherals-configuration/m-p/1007840#M2058</guid>
      <dc:creator>Hui_Ma</dc:creator>
      <dc:date>2019-11-15T00:45:52Z</dc:date>
    </item>
  </channel>
</rss>

