Other Parts Discussed in Thread: EK-TM4C1294XL
Hello,
I am trying to impletement a RTC match interrupt on the evaluation board EK-TM4C1294XL with Ti-RTOS on it.
I imported the tivaware hibernate library and wrote two functions :
void RTC_match()
{
System_printf("coucou\n");
}
short int initRTC()
{
HibernateRTCEnable();
// Init the RTC to 0
HibernateRTCSet(0);
HibernateRTCMatchSet(HIBERNATE_INT_RTC_MATCH_0,10);
HibernateIntRegister(RTC_match);
return 0;
}
But when I try to compile, there is a problem with the interrupt vector : error #10099-D: program will not fit into available memory. run placement with alignment fails for section ".vtable" size 0x26c , overlaps with ".vecs", size 0x360 (page 0)
I don't know what I have to do to make this interrupt work with ti-rtos. Do I need to use HWI, SWI ?
Thank you in advance for your help.
Best Regards,
Yannick Riou