<?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のトピックHow can I initiate a system reset in software using the LPC55S69 microcontroller</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-can-I-initiate-a-system-reset-in-software-using-the-LPC55S69/m-p/1684475#M53404</link>
    <description>&lt;P&gt;hello team,&lt;/P&gt;&lt;P&gt;To initiate a system reset in software using the LPC55S69 microcontroller, I can utilize the built-in software reset feature provided by the microcontroller's System Control Block (SCB) in &lt;A href="https://www.prestigesparkgrove.in/" target="_blank" rel="noopener"&gt;Prestige Park Grove&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is this a Right code to reset can you check and tell me&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;#include "LPC55S69.h"&lt;/P&gt;&lt;P&gt;void softwareReset(void) {&lt;BR /&gt;SCB-&amp;gt;AIRCR = (0x5FA &amp;lt;&amp;lt; SCB_AIRCR_VECTKEY_Pos) | SCB_AIRCR_SYSRESETREQ_Msk;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;int main(void) {&lt;BR /&gt;// Your main code here&lt;BR /&gt;&lt;BR /&gt;// Call the softwareReset() function whenever you want to initiate a system reset&lt;BR /&gt;&lt;BR /&gt;while (1) {&lt;BR /&gt;// Your code continues to run until the software reset is triggered&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Is there any changes need to change or this is the correct Code to reset&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jul 2023 04:51:09 GMT</pubDate>
    <dc:creator>saratancerdi</dc:creator>
    <dc:date>2023-07-10T04:51:09Z</dc:date>
    <item>
      <title>How can I initiate a system reset in software using the LPC55S69 microcontroller</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-can-I-initiate-a-system-reset-in-software-using-the-LPC55S69/m-p/1684475#M53404</link>
      <description>&lt;P&gt;hello team,&lt;/P&gt;&lt;P&gt;To initiate a system reset in software using the LPC55S69 microcontroller, I can utilize the built-in software reset feature provided by the microcontroller's System Control Block (SCB) in &lt;A href="https://www.prestigesparkgrove.in/" target="_blank" rel="noopener"&gt;Prestige Park Grove&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is this a Right code to reset can you check and tell me&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;#include "LPC55S69.h"&lt;/P&gt;&lt;P&gt;void softwareReset(void) {&lt;BR /&gt;SCB-&amp;gt;AIRCR = (0x5FA &amp;lt;&amp;lt; SCB_AIRCR_VECTKEY_Pos) | SCB_AIRCR_SYSRESETREQ_Msk;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;int main(void) {&lt;BR /&gt;// Your main code here&lt;BR /&gt;&lt;BR /&gt;// Call the softwareReset() function whenever you want to initiate a system reset&lt;BR /&gt;&lt;BR /&gt;while (1) {&lt;BR /&gt;// Your code continues to run until the software reset is triggered&lt;BR /&gt;}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;Is there any changes need to change or this is the correct Code to reset&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jul 2023 04:51:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-can-I-initiate-a-system-reset-in-software-using-the-LPC55S69/m-p/1684475#M53404</guid>
      <dc:creator>saratancerdi</dc:creator>
      <dc:date>2023-07-10T04:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can I initiate a system reset in software using the LPC55S69 microcontroller</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-can-I-initiate-a-system-reset-in-software-using-the-LPC55S69/m-p/1684512#M53406</link>
      <description>&lt;DIV&gt;
&lt;P&gt;Hi&amp;nbsp;saratancerdi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try below code to do MCU system reset:&lt;BR /&gt;NVIC_SystemReset();&lt;BR /&gt;It is defined in&amp;nbsp;core_cm33.h file.&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;/**
  \brief   System Reset
  \details Initiates a system reset request to reset the MCU.
 */
__NO_RETURN __STATIC_INLINE void __NVIC_SystemReset(void)
{
  __DSB();                                                          /* Ensure all outstanding memory accesses included
                                                                       buffered write are completed before reset */
  SCB-&amp;gt;AIRCR  = (uint32_t)((0x5FAUL &amp;lt;&amp;lt; SCB_AIRCR_VECTKEY_Pos)    |
                           (SCB-&amp;gt;AIRCR &amp;amp; SCB_AIRCR_PRIGROUP_Msk) |
                            SCB_AIRCR_SYSRESETREQ_Msk    );         /* Keep priority group unchanged */
  __DSB();                                                          /* Ensure completion of memory access */

  for(;;)                                                           /* wait until reset */
  {
    __NOP();
  }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Jun Zhang&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 10 Jul 2023 06:08:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-can-I-initiate-a-system-reset-in-software-using-the-LPC55S69/m-p/1684512#M53406</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2023-07-10T06:08:20Z</dc:date>
    </item>
  </channel>
</rss>

