Hi Team,
1. I used the AM6254 official development board to simulate the GPIO input interrupt function. I used the gpio_input_interrupt program in "mcu_plus_sdk_am62x_08_04_00_16" to replace the newly compiled am62-mcu-m4f0_0-fw in the /lib/firmware/ directory. The M core running program was abnormal after getting online again. The prompt is:
[Error] Sciclient event config failed!!!
ASSERT: 0.6697s: ../board.c:Sciclient_gpioIrqSet:107: FALSE failed !!!
2. I checked the source code and found an assertion error at the initialization of the GPIO interrupt. The specific code is as follows:
retVal = Sciclient_rmIrqSetRaw(&rmIrqReq, &rmIrqResp, SystemP_WAIT_FOREVER);
if(0 != retVal)
{
DebugP_log("[Error] Sciclient event config failed!!!\r\n");
DebugP_assert(FALSE);
}
3. All that I used was the official default hardwares and the SDK packages of the official website, and no modifications have been made to all other content.
4. I replaced it with other GPIO pins, and the issue remained the same.
Could you please help me to find out what is causing this issue?
Kind regards,
Katherine