<?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: How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified ad</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604871#M23561</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;Is the code something which is similar to the mentioned below such that in order to save the GPIO data&amp;nbsp; at the internal memory location :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;int main()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* initial instruction is important to use the shadow area */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;uint32_t *var &amp;nbsp;__attribute__((at(0x10080000))); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M4MEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M0SUBMEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CCU1-&amp;gt;CLK_M4_GPIO_CFG = CCU_CLK_CFG_AUTO | CCU_CLK_CFG_RUN ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;while (!(LPC_CCU1-&amp;gt;CLK_M4_GPIO_STAT &amp;amp; CCU_CLK_STAT_RUN)); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* &amp;nbsp;CLK_M4_GPIO_STAT can access as a read value and cant be written and the value &amp;nbsp;which &amp;nbsp;would depends on the CLK_M4_GPIO_CFG Configuration &amp;nbsp;Register &amp;nbsp;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* To configure The GPIO port as the write pin or output Pin or output port in word format or Byte format &amp;nbsp;or Bit format */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* &amp;nbsp;To format the GPIO single pin in the &amp;nbsp;output bit &amp;nbsp;*/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_SCU-&amp;gt;SFSPD_12 = 4; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* The 4 value is the mode Value for the function 4 such that GPIO PORT GPIO6[26] */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_GPIO_PORT-&amp;gt;DIR[6] |= 1 &amp;lt;&amp;lt; 6;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* The value is the Directory value set the GPIO6[26] as the output bit Pin */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_GPIO_PORT-&amp;gt;SET[6] = 1 &amp;lt;&amp;lt; 6 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;while(1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;if(LPC_GPIO_PORT-&amp;gt;PIN[0] &amp;amp;&amp;amp; LPC_GPIO_PORT-&amp;gt;PIN[1] == 0xFFFFFFFF)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;*var = LPC_GPIO_PORT-&amp;gt;PIN[6]; &amp;nbsp;// &amp;nbsp;Read the Port Number 6 and save it in the memory location 0x10080000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;var++; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; // Increment the Address &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Sujay&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2017 07:57:00 GMT</pubDate>
    <dc:creator>sujayp</dc:creator>
    <dc:date>2017-03-09T07:57:00Z</dc:date>
    <item>
      <title>How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified addres</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604869#M23559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified address in LPC4370 ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;will you please suggest me, how to write the same&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="padding: 0pt 0pt 0pt 0pt;"&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 08:30:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604869#M23559</guid>
      <dc:creator>sujayp</dc:creator>
      <dc:date>2017-02-28T08:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified ad</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604870#M23560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A _jive_internal="true" data-content-finding="Community" data-userid="284037" data-username="sujayp" href="https://community.nxp.com/people/sujayp"&gt;sujay p&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 微软雅黑, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: #ffffff;"&gt;Thank you for your interest in NXP Semiconductor products and for the opportunity to serve you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 微软雅黑, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 21px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: #ffffff;"&gt;To achieve the goal, firstly, you should define a array which locate at the specific address in the RAM, then the array can be wrote by the value of the GPIO port via C language.&lt;/SPAN&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Ping&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, 01 Mar 2017 06:30:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604870#M23560</guid>
      <dc:creator>jeremyzhou</dc:creator>
      <dc:date>2017-03-01T06:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified ad</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604871#M23561</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;Is the code something which is similar to the mentioned below such that in order to save the GPIO data&amp;nbsp; at the internal memory location :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;int main()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* initial instruction is important to use the shadow area */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;uint32_t *var &amp;nbsp;__attribute__((at(0x10080000))); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M4MEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M0SUBMEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CCU1-&amp;gt;CLK_M4_GPIO_CFG = CCU_CLK_CFG_AUTO | CCU_CLK_CFG_RUN ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;while (!(LPC_CCU1-&amp;gt;CLK_M4_GPIO_STAT &amp;amp; CCU_CLK_STAT_RUN)); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* &amp;nbsp;CLK_M4_GPIO_STAT can access as a read value and cant be written and the value &amp;nbsp;which &amp;nbsp;would depends on the CLK_M4_GPIO_CFG Configuration &amp;nbsp;Register &amp;nbsp;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* To configure The GPIO port as the write pin or output Pin or output port in word format or Byte format &amp;nbsp;or Bit format */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* &amp;nbsp;To format the GPIO single pin in the &amp;nbsp;output bit &amp;nbsp;*/ &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_SCU-&amp;gt;SFSPD_12 = 4; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* The 4 value is the mode Value for the function 4 such that GPIO PORT GPIO6[26] */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_GPIO_PORT-&amp;gt;DIR[6] |= 1 &amp;lt;&amp;lt; 6;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* The value is the Directory value set the GPIO6[26] as the output bit Pin */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_GPIO_PORT-&amp;gt;SET[6] = 1 &amp;lt;&amp;lt; 6 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;while(1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;if(LPC_GPIO_PORT-&amp;gt;PIN[0] &amp;amp;&amp;amp; LPC_GPIO_PORT-&amp;gt;PIN[1] == 0xFFFFFFFF)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;*var = LPC_GPIO_PORT-&amp;gt;PIN[6]; &amp;nbsp;// &amp;nbsp;Read the Port Number 6 and save it in the memory location 0x10080000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;var++; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; // Increment the Address &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Sujay&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 07:57:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604871#M23561</guid>
      <dc:creator>sujayp</dc:creator>
      <dc:date>2017-03-09T07:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified ad</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604872#M23562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the code something which is similar to the mentioned below such that in order to save the GPIO data&amp;nbsp; at the internal memory location :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually in the previous code set GPIO6 [26] is set as a write pin ; I think it wont work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;int main()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* initial instruction is important to use the shadow area */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;uint32_t *var &amp;nbsp;__attribute__((at(0x10080000))); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M4MEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CREG-&amp;gt;M0SUBMEMMAP = 0x1C000000;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;LPC_CCU1-&amp;gt;CLK_M4_GPIO_CFG = CCU_CLK_CFG_AUTO | CCU_CLK_CFG_RUN ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;while (!(LPC_CCU1-&amp;gt;CLK_M4_GPIO_STAT &amp;amp; CCU_CLK_STAT_RUN)); &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;/* &amp;nbsp;CLK_M4_GPIO_STAT can access as a read value and cant be written and the value &amp;nbsp;which &amp;nbsp;would depends on the CLK_M4_GPIO_CFG Configuration &amp;nbsp;Register &amp;nbsp;*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;*var = LPC_GPIO_PORT-&amp;gt;PIN[6]; &amp;nbsp;// &amp;nbsp;Read the Port Number 6 and save it in the memory location 0x10080000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;var++; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// increment the Address &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;Sujay&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0000pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2017 08:01:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604872#M23562</guid>
      <dc:creator>sujayp</dc:creator>
      <dc:date>2017-03-09T08:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to transfer the data between the GPIO port to internal memory SRAM in LPC4370 without using the DMA technique such that is there is any single Embedded C instruction to transfer the any one of the GPIO port data into the internal SRAM specified ad</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604873#M23563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Were you able to read pins? I am just trying to give a DC supply but am not able to get any proper output, it always gives me 0, meaning the input is always low, even when I am giving a DC of 3.3V. Do I have to supply a greater voltage? I am totally left clueless. I am using GPIO1_0.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2018 22:09:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-transfer-the-data-between-the-GPIO-port-to-internal/m-p/604873#M23563</guid>
      <dc:creator>vxs187</dc:creator>
      <dc:date>2018-12-27T22:09:44Z</dc:date>
    </item>
  </channel>
</rss>

