<?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>S32KのトピックRe: S32K322 Debug LVD HVD and error notification</title>
    <link>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133297#M50883</link>
    <description>&lt;P&gt;Hello Senlent,&lt;/P&gt;&lt;P&gt;Thanks for the clarification.&lt;/P&gt;&lt;P&gt;How I can debug it ? I want to see if the control jumps to the notification callback. mainly for Low Voltage detect.&lt;/P&gt;&lt;P&gt;What configuration I need to do to achieve this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 14 Jul 2025 11:22:03 GMT</pubDate>
    <dc:creator>AbdNxp</dc:creator>
    <dc:date>2025-07-14T11:22:03Z</dc:date>
    <item>
      <title>S32K322 Debug LVD HVD and error notification</title>
      <link>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2132458#M50825</link>
      <description>&lt;P&gt;Hello Teach Supports,&lt;/P&gt;&lt;P&gt;I am working on NXP S32K322.&lt;/P&gt;&lt;P&gt;I want to use LVD and HVD and power related callback.&lt;/P&gt;&lt;P&gt;I have enabled the above configuration from POWER configuration also added notification and error callbacks.&lt;/P&gt;&lt;P&gt;Now, when I reduce the power to 2.9V debugger notifying target power lost.&lt;/P&gt;&lt;P&gt;My simple question is how I can test that on low/high voltage detection the control jumps to respective interrupt/callback.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 10:11:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2132458#M50825</guid>
      <dc:creator>AbdNxp</dc:creator>
      <dc:date>2025-07-11T10:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: S32K322 Debug LVD HVD and error notification</title>
      <link>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133238#M50875</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@AbdNxp" target="_blank"&gt;Hi@AbdNxp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The HVD and LVD interrupt events have the same interrupt function, so they will only enter the same interrupt function，that it "McuErrorIsrNotification()" .&lt;/P&gt;
&lt;P&gt;You need to determine whether the LVD or HVD event occurs based on the value of LVSC.&lt;/P&gt;
&lt;P&gt;For example:&lt;/P&gt;
&lt;LI-CODE lang="c"&gt;void McuErrorIsrNotification(uint8 u8ErrorCode)//McuErrorIsrNotification
{
      uint32_t PMC_Status = 0;

      PMC_Status = IP_PMC-&amp;gt;LVSC;//get LVSC register vaule

      if((PMC_Status&amp;gt;&amp;gt;4) &amp;amp; 0x01)//LVDA5F = 1
      {
      ;//LVD event happend
      }

      if((PMC_Status&amp;gt;&amp;gt;0) &amp;amp; 0x01)//HVDAF= 1
      {
      ;//HVD event happend
      }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 09:31:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133238#M50875</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2025-07-14T09:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: S32K322 Debug LVD HVD and error notification</title>
      <link>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133297#M50883</link>
      <description>&lt;P&gt;Hello Senlent,&lt;/P&gt;&lt;P&gt;Thanks for the clarification.&lt;/P&gt;&lt;P&gt;How I can debug it ? I want to see if the control jumps to the notification callback. mainly for Low Voltage detect.&lt;/P&gt;&lt;P&gt;What configuration I need to do to achieve this ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jul 2025 11:22:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133297#M50883</guid>
      <dc:creator>AbdNxp</dc:creator>
      <dc:date>2025-07-14T11:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: S32K322 Debug LVD HVD and error notification</title>
      <link>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133772#M50900</link>
      <description>&lt;P&gt;&lt;A href="mailto:Hi@AbdNxp" target="_blank"&gt;Hi@AbdNxp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;"Now, when I reduce the power to 2.9V debugger notifying target power lost."&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I think you have some misunderstandings here. If it is lower than 2.9V, it should be an LVR event rather than an LVD event. By default, an LVR event will cause a POR instead of an interrupt.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_0-1752546605866.png" style="width: 658px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/347498i613503B50258E2F1/image-dimensions/658x217?v=v2" width="658" height="217" role="button" title="Senlent_0-1752546605866.png" alt="Senlent_0-1752546605866.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;For LVD:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Senlent_1-1752557676507.png" style="width: 653px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/347530i0BAEC5B2B08AB4A2/image-dimensions/653x142?v=v2" width="653" height="142" role="button" title="Senlent_1-1752557676507.png" alt="Senlent_1-1752557676507.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 05:35:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K322-Debug-LVD-HVD-and-error-notification/m-p/2133772#M50900</guid>
      <dc:creator>Senlent</dc:creator>
      <dc:date>2025-07-15T05:35:29Z</dc:date>
    </item>
  </channel>
</rss>

