Hello, Friends
I involved in a project (RM46L852), that use a HET pin ( hetPort1, PIN_HET_7) as interrupt pin.
For the GIO, I can use below function to get notification,
void gioEnableNotification(gioPORT_t *port, uint32 bit)
{
/* USER CODE BEGIN (11) */
/* USER CODE END */
if (port == gioPORTA)
{
gioREG->ENASET = (uint32)1U << bit;
}
else if (port == gioPORTB)
{
gioREG->ENASET = (uint32)1U << (bit + 8U);
}
else
{
/* Empty */
}
}But how about HET pin, which function should be use, or it needs add USER CODE in above function?
Thanks!
