<?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 Pit Timer Interrupts not working - S32K358 in S32K</title>
    <link>https://community.nxp.com/t5/S32K/Pit-Timer-Interrupts-not-working-S32K358/m-p/2030382#M45255</link>
    <description>&lt;P&gt;Greetings,&lt;BR /&gt;&lt;BR /&gt;I'm trying to add a PIT Timer Interrupt to the TCPIP2.0.0 example code. The derivative is S32K358, and I'm using S32K3x8-EVB for testing the code.&lt;BR /&gt;&lt;BR /&gt;I have the following setup:&lt;/P&gt;&lt;P&gt;In main.c:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include "device.h"

#include "Pit_Ip.h"
#include "Clock_Ip.h"
#include "IntCtrl_Ip.h"
#include "Siul2_Port_Ip.h"
#include "Siul2_Dio_Ip.h"


/* The actual TCP/IP test */
extern void start_example(void);

int c1 = 0;

/* Global flag updated in interrupt */
volatile uint8 toggleLed = 0U;

void TimerInterupt1(void)
{
    toggleLed = 1U;
}


/* main function */
int main(void)
{
    device_init();

    start_example();

    return 0;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;In device.c: ( I have migrated most of the MCAL modules to Drivers, and therefore I have removed some modules). I have also removed OsIf in order to check whether it affects the functionality of the TCPIP stack, but the TCPIP examples seem to function well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include "S32K358.h"
//#include "Platform.h"
#include "device.h"
#include "Mcal.h"
#include "Mcu.h"
//#include "Port.h"
#include "Siul2_Port_Ip.h"
//#include "OsIf.h"
#include "Eth_43_GMAC.h"
//#include "Dio.h"
#include "Siul2_Dio_Ip.h"

#ifndef USING_OS_FREERTOS
//#include "Gpt.h"
#endif
#include "Pit_Ip.h"
#include "IntCtrl_Ip.h"
#include "apps/led_control/led.h"

void device_init(void)
{
    /* Set RMII configuration for EMAC in DCM module */
	IP_DCM_GPR-&amp;gt;DCMRWF1 = (IP_DCM_GPR-&amp;gt;DCMRWF1 &amp;amp; ~DCM_GPR_DCMRWF1_MAC_CONF_SEL_MASK) | DCM_GPR_DCMRWF1_MAC_CONF_SEL(2U);

//    /* Initialize Os Interface */
//    OsIf_Init(NULL_PTR);

    /* Initialize all pins using the Port driver */
    //Port_Init(NULL_PTR);
    Siul2_Port_Ip_PortStatusType Status_Init_Port = SIUL2_PORT_ERROR;
    Status_Init_Port = Siul2_Port_Ip_Init(NUM_OF_CONFIGURED_PINS_PortContainer_0_BOARD_InitPeripherals, g_pin_mux_InitConfigArr_PortContainer_0_BOARD_InitPeripherals);
    if(Status_Init_Port != SIUL2_PORT_SUCCESS)
    {
    	while(1); /* Error during initialization. */
    }

    /* Setup Clocks */
    /* Initialize Mcu module */
    Mcu_Init(NULL_PTR);

    /* Initialize Mcu clock */
    Mcu_InitClock(McuClockSettingConfig_0);

    while (Mcu_GetPllStatus() != MCU_PLL_LOCKED){};

    /* Use PLL clock */
    Mcu_DistributePllClock();

    Mcu_SetMode(McuModeSettingConf_0);

//    /* Initialize Platform driver */
//    Platform_Init(NULL_PTR);

    /* set PIT 0 interrupt */
    IntCtrl_Ip_Init(&amp;amp;IntCtrlConfig_0);
    IntCtrl_Ip_EnableIrq(PIT0_IRQn);


    /* Initialize PIT instance 0 - Channel 0 */
    Pit_Ip_Init(PIT_INST_0, &amp;amp;PIT_0_ChannelConfig_PB_BOARD_InitPeripherals);
    /* Initialize channel 0 */
    Pit_Ip_InitChannel(PIT_INST_0, PIT_0_CH_0);
    /* Enable channel interrupt PIT_0 - CH_0 */
    Pit_Ip_EnableChannelInterrupt(PIT_INST_0, CH_0);
    /* Start channel CH_0 */
    Pit_Ip_StartChannel(PIT_INST_0, CH_0, PIT_PERIOD_0);

    /* Initialize channel 0 */
    Pit_Ip_InitChannel(PIT_INST_0, PIT_0_CH_1);
    /* Enable channel interrupt PIT_0 - CH_0 */
    Pit_Ip_EnableChannelInterrupt(PIT_INST_0, CH_1);
    /* Start channel CH_0 */
    Pit_Ip_StartChannel(PIT_INST_0, CH_1, PIT_PERIOD_1);

#ifndef USING_OS_FREERTOS

//    /* Initialize PIT driver and start the timer */
//    Gpt_Init(&amp;amp;Gpt_Config_BOARD_InitPeripherals);
//    /* Start the Gpt timer */
//    Gpt_StartTimer(GptConf_GptChannelConfiguration_GptChannelConfiguration_0, 40000000U);
//    /* Enable the Gpt notification*/
//    Gpt_EnableNotification(GptConf_GptChannelConfiguration_GptChannelConfiguration_0);

//    OsIf_SetTimerFrequency(160000000U,  OSIF_USE_SYSTEM_TIMER);

#endif /* USING_OS_FREERTOS */

    /* Initialize and enable the GMAC module */
    Eth_43_GMAC_Init(NULL_PTR);
}&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;#include "BasicTypes.h"

#ifndef DEVICE_H
#define DEVICE_H

// 40000000 is one second
// 4000000 is 100 ms
// 400000 is 10 ms
#define PIT_PERIOD_0 2000000 //100ms
#define PIT_PERIOD_1 400000 // 10 ms
#define PIT_PERIOD_2 4000 //100 us
#define PIT_INST_0 0
#define PIT_INST_1 1
#define PIT_INST_2 2
#define CH_0 0
#define CH_1 1
#define CH_2 2


void device_init(void);

#endif&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;In test.c's while loop I have the following setup:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;    /* Toggle the gpio pin to blink the LED when the Pit notification is called */
    if (1U == toggleLed)
    {
        //Siul2_Dio_Ip_TogglePins(LED_PORT, (1UL &amp;lt;&amp;lt; LED_PIN));
        led0_red();
        toggleLed = 0U;
    }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void led0_red(void){
//	Dio_WriteChannel(DioConf_DioChannel_LED0_RED, STD_HIGH);
//	Dio_WriteChannel(DioConf_DioChannel_LED0_GREEN, STD_LOW);
//	Dio_WriteChannel(DioConf_DioChannel_LED0_BLUE, STD_LOW);
	Siul2_Dio_Ip_WritePin(LED0_RED_PORT, 	LED0_RED_PIN, 	STD_HIGH);
	Siul2_Dio_Ip_WritePin(LED0_GREEN_PORT, 	LED0_GREEN_PIN, STD_LOW);
	Siul2_Dio_Ip_WritePin(LED0_BLUE_PORT, 	LED0_BLUE_PIN, 	STD_LOW);

}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The configuration in PINtool is as follows:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_0-1737356639833.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320290i2949F5CDAA490206/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_0-1737356639833.png" alt="ajosep12_0-1737356639833.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The configuration in the peripheral tool:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_1-1737356683175.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320291i836966230E9D0539/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_1-1737356683175.png" alt="ajosep12_1-1737356683175.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_2-1737356711208.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320292i7C4F1A6A268774D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_2-1737356711208.png" alt="ajosep12_2-1737356711208.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_3-1737356734330.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320293i709CB4DEE106C4E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_3-1737356734330.png" alt="ajosep12_3-1737356734330.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_4-1737356761254.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320294i8EEAEC39B25B0E64/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_4-1737356761254.png" alt="ajosep12_4-1737356761254.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have also set breakpoints insider the TimerInterupt1(); function, which is supposed to be called every 50 ms, but the execution never reaches the breakpoint.&lt;BR /&gt;&lt;BR /&gt;Is there anything that I'm missing?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;I compared with the available Pit_Gpt_Ip_example as well, but couldn't find why the modifications that I made to TCPIP example isn't working with respect to the timer interrupts, while the rest of the functionality of the TCPIP example works perfectly.&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Jan 2025 07:13:39 GMT</pubDate>
    <dc:creator>ajosep12</dc:creator>
    <dc:date>2025-01-20T07:13:39Z</dc:date>
    <item>
      <title>Pit Timer Interrupts not working - S32K358</title>
      <link>https://community.nxp.com/t5/S32K/Pit-Timer-Interrupts-not-working-S32K358/m-p/2030382#M45255</link>
      <description>&lt;P&gt;Greetings,&lt;BR /&gt;&lt;BR /&gt;I'm trying to add a PIT Timer Interrupt to the TCPIP2.0.0 example code. The derivative is S32K358, and I'm using S32K3x8-EVB for testing the code.&lt;BR /&gt;&lt;BR /&gt;I have the following setup:&lt;/P&gt;&lt;P&gt;In main.c:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include "device.h"

#include "Pit_Ip.h"
#include "Clock_Ip.h"
#include "IntCtrl_Ip.h"
#include "Siul2_Port_Ip.h"
#include "Siul2_Dio_Ip.h"


/* The actual TCP/IP test */
extern void start_example(void);

int c1 = 0;

/* Global flag updated in interrupt */
volatile uint8 toggleLed = 0U;

void TimerInterupt1(void)
{
    toggleLed = 1U;
}


/* main function */
int main(void)
{
    device_init();

    start_example();

    return 0;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;In device.c: ( I have migrated most of the MCAL modules to Drivers, and therefore I have removed some modules). I have also removed OsIf in order to check whether it affects the functionality of the TCPIP stack, but the TCPIP examples seem to function well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;#include "S32K358.h"
//#include "Platform.h"
#include "device.h"
#include "Mcal.h"
#include "Mcu.h"
//#include "Port.h"
#include "Siul2_Port_Ip.h"
//#include "OsIf.h"
#include "Eth_43_GMAC.h"
//#include "Dio.h"
#include "Siul2_Dio_Ip.h"

#ifndef USING_OS_FREERTOS
//#include "Gpt.h"
#endif
#include "Pit_Ip.h"
#include "IntCtrl_Ip.h"
#include "apps/led_control/led.h"

void device_init(void)
{
    /* Set RMII configuration for EMAC in DCM module */
	IP_DCM_GPR-&amp;gt;DCMRWF1 = (IP_DCM_GPR-&amp;gt;DCMRWF1 &amp;amp; ~DCM_GPR_DCMRWF1_MAC_CONF_SEL_MASK) | DCM_GPR_DCMRWF1_MAC_CONF_SEL(2U);

//    /* Initialize Os Interface */
//    OsIf_Init(NULL_PTR);

    /* Initialize all pins using the Port driver */
    //Port_Init(NULL_PTR);
    Siul2_Port_Ip_PortStatusType Status_Init_Port = SIUL2_PORT_ERROR;
    Status_Init_Port = Siul2_Port_Ip_Init(NUM_OF_CONFIGURED_PINS_PortContainer_0_BOARD_InitPeripherals, g_pin_mux_InitConfigArr_PortContainer_0_BOARD_InitPeripherals);
    if(Status_Init_Port != SIUL2_PORT_SUCCESS)
    {
    	while(1); /* Error during initialization. */
    }

    /* Setup Clocks */
    /* Initialize Mcu module */
    Mcu_Init(NULL_PTR);

    /* Initialize Mcu clock */
    Mcu_InitClock(McuClockSettingConfig_0);

    while (Mcu_GetPllStatus() != MCU_PLL_LOCKED){};

    /* Use PLL clock */
    Mcu_DistributePllClock();

    Mcu_SetMode(McuModeSettingConf_0);

//    /* Initialize Platform driver */
//    Platform_Init(NULL_PTR);

    /* set PIT 0 interrupt */
    IntCtrl_Ip_Init(&amp;amp;IntCtrlConfig_0);
    IntCtrl_Ip_EnableIrq(PIT0_IRQn);


    /* Initialize PIT instance 0 - Channel 0 */
    Pit_Ip_Init(PIT_INST_0, &amp;amp;PIT_0_ChannelConfig_PB_BOARD_InitPeripherals);
    /* Initialize channel 0 */
    Pit_Ip_InitChannel(PIT_INST_0, PIT_0_CH_0);
    /* Enable channel interrupt PIT_0 - CH_0 */
    Pit_Ip_EnableChannelInterrupt(PIT_INST_0, CH_0);
    /* Start channel CH_0 */
    Pit_Ip_StartChannel(PIT_INST_0, CH_0, PIT_PERIOD_0);

    /* Initialize channel 0 */
    Pit_Ip_InitChannel(PIT_INST_0, PIT_0_CH_1);
    /* Enable channel interrupt PIT_0 - CH_0 */
    Pit_Ip_EnableChannelInterrupt(PIT_INST_0, CH_1);
    /* Start channel CH_0 */
    Pit_Ip_StartChannel(PIT_INST_0, CH_1, PIT_PERIOD_1);

#ifndef USING_OS_FREERTOS

//    /* Initialize PIT driver and start the timer */
//    Gpt_Init(&amp;amp;Gpt_Config_BOARD_InitPeripherals);
//    /* Start the Gpt timer */
//    Gpt_StartTimer(GptConf_GptChannelConfiguration_GptChannelConfiguration_0, 40000000U);
//    /* Enable the Gpt notification*/
//    Gpt_EnableNotification(GptConf_GptChannelConfiguration_GptChannelConfiguration_0);

//    OsIf_SetTimerFrequency(160000000U,  OSIF_USE_SYSTEM_TIMER);

#endif /* USING_OS_FREERTOS */

    /* Initialize and enable the GMAC module */
    Eth_43_GMAC_Init(NULL_PTR);
}&lt;/LI-CODE&gt;&lt;LI-CODE lang="c"&gt;#include "BasicTypes.h"

#ifndef DEVICE_H
#define DEVICE_H

// 40000000 is one second
// 4000000 is 100 ms
// 400000 is 10 ms
#define PIT_PERIOD_0 2000000 //100ms
#define PIT_PERIOD_1 400000 // 10 ms
#define PIT_PERIOD_2 4000 //100 us
#define PIT_INST_0 0
#define PIT_INST_1 1
#define PIT_INST_2 2
#define CH_0 0
#define CH_1 1
#define CH_2 2


void device_init(void);

#endif&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;In test.c's while loop I have the following setup:&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;    /* Toggle the gpio pin to blink the LED when the Pit notification is called */
    if (1U == toggleLed)
    {
        //Siul2_Dio_Ip_TogglePins(LED_PORT, (1UL &amp;lt;&amp;lt; LED_PIN));
        led0_red();
        toggleLed = 0U;
    }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;void led0_red(void){
//	Dio_WriteChannel(DioConf_DioChannel_LED0_RED, STD_HIGH);
//	Dio_WriteChannel(DioConf_DioChannel_LED0_GREEN, STD_LOW);
//	Dio_WriteChannel(DioConf_DioChannel_LED0_BLUE, STD_LOW);
	Siul2_Dio_Ip_WritePin(LED0_RED_PORT, 	LED0_RED_PIN, 	STD_HIGH);
	Siul2_Dio_Ip_WritePin(LED0_GREEN_PORT, 	LED0_GREEN_PIN, STD_LOW);
	Siul2_Dio_Ip_WritePin(LED0_BLUE_PORT, 	LED0_BLUE_PIN, 	STD_LOW);

}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The configuration in PINtool is as follows:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_0-1737356639833.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320290i2949F5CDAA490206/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_0-1737356639833.png" alt="ajosep12_0-1737356639833.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;The configuration in the peripheral tool:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_1-1737356683175.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320291i836966230E9D0539/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_1-1737356683175.png" alt="ajosep12_1-1737356683175.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_2-1737356711208.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320292i7C4F1A6A268774D8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_2-1737356711208.png" alt="ajosep12_2-1737356711208.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_3-1737356734330.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320293i709CB4DEE106C4E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_3-1737356734330.png" alt="ajosep12_3-1737356734330.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ajosep12_4-1737356761254.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/320294i8EEAEC39B25B0E64/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ajosep12_4-1737356761254.png" alt="ajosep12_4-1737356761254.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have also set breakpoints insider the TimerInterupt1(); function, which is supposed to be called every 50 ms, but the execution never reaches the breakpoint.&lt;BR /&gt;&lt;BR /&gt;Is there anything that I'm missing?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;I compared with the available Pit_Gpt_Ip_example as well, but couldn't find why the modifications that I made to TCPIP example isn't working with respect to the timer interrupts, while the rest of the functionality of the TCPIP example works perfectly.&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 07:13:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Pit-Timer-Interrupts-not-working-S32K358/m-p/2030382#M45255</guid>
      <dc:creator>ajosep12</dc:creator>
      <dc:date>2025-01-20T07:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pit Timer Interrupts not working - S32K358</title>
      <link>https://community.nxp.com/t5/S32K/Pit-Timer-Interrupts-not-working-S32K358/m-p/2030868#M45285</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/239146"&gt;@ajosep12&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If possible, could you please share your project? I would like to conduct a detailed analysis of the configurations to ensure that all requirements are met. Additionally, I would like to test it on my side to verify if I can reproduce the behavior you are describing.&lt;/P&gt;
&lt;P&gt;I also recommend commenting out any functions that are not related to the PIT functionality. This will help isolate the issue and simplify troubleshooting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, VaneB&lt;/P&gt;</description>
      <pubDate>Mon, 20 Jan 2025 21:30:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Pit-Timer-Interrupts-not-working-S32K358/m-p/2030868#M45285</guid>
      <dc:creator>VaneB</dc:creator>
      <dc:date>2025-01-20T21:30:29Z</dc:date>
    </item>
  </channel>
</rss>

