Hello NXP,
I need to control GPIO or other interface in MCXN947 slave core (or CPU1, not CPU0).
Based on example <multicore_examples\rpmsg_lite_pingpong> in v25.06 FRDM-MCXN947 sdk, then take a P0_10(RED_LED)configuration and create control code to salve core main function. After built, I find that RED_LED can't be controlled.
Hope you can help me find the reason and fix it.
Thanks very much.
----Test code
1>for RED_LED pin configuration, I used MCUXPresso IDE to config and generate code automatically.
shown as below.

2>for RED_LED control, below is the code I create in slave core project.
//---------------------------
#include "fsl_gpio.h"
#include "fsl_clock.h"
#include "fsl_common.h"
#include "pin_mux.h"
void delay_1ms(uint32_t dt)
{
uint32_t Core_Freq;
Core_Freq = CLOCK_GetCoreSysClkFreq();
for(uint32_t i=0; i<dt; i++)
{
SDK_DelayAtLeastUs(1000,Core_Freq);
}
}
//----------------------------

while(1)
{
GPIO_PinWrite(BOARD_INITPINS_CORE1_LED_RED_GPIO,BOARD_INITPINS_CORE1_LED_RED_GPIO_PIN,0U);
delay_1ms(1000);
GPIO_PinWrite(BOARD_INITPINS_CORE1_LED_RED_GPIO,BOARD_INITPINS_CORE1_LED_RED_GPIO_PIN,1U);
delay_1ms(1000);
}

BTW, I have tested that the code shown above can work in single example, as <demo_apps\hello_world\cm33_core0>