Thank you for the response.
Referring to the match interrupt demo, below are the functions implemented to enable
interrupt,i.e., after Ctimer_RegisterCallback function as given below:
1. CTIMER_RegisterCallBack(CTIMER, &ctimer_callback_table[0], kCTIMER_MultipleCallback);
2. CTIMER_EnableInterrupts(CTIMER,kCTIMER_Match0InterruptEnable);//added this line
3. EnableIRQ(CTIMER0_IRQn);//Added this line
4. CTIMER_StartTimer(CTIMER);
Above is the part of the code, where I have added line 2 and 3 to enable interrupts, but if it's not used
also pwm is generating, and is it fine if we use--> void pwm_match_callback(uint32_t flags)..
Since after calling Register callback function, and making toggling of led inside the pwm_match_callback
function, only ON_board led will toggle[Red, green ON BOARD LED'S], external port pin connected and other
parameters passed inside the function won't work, tried after changing in PIN_MUX.c and PIN_MUX.h library file.
And in code bundle library initially I tried developing our application using code bundle library codes,
but only led_demo sample worked, and not got expected result from the other demo codes.
As I checked again with Ctimer demo sample[code bundle library], after flashing the code to MCU and resetting
the MCU, the pwm wont toggle on the OUT_PORT bit P0.25.
Is the process i'm working on using SDK demo for ctimer i.e., I have mentioned in the callback function is correct?