Tool/software: Code Composer Studio
Dear Supporter
I'm coding 1 project, I have a problem, source code is show below:
/* PORTJ initial */
SysCtlPeripheralEnable(SYSCTL_PERIPH_GPIOJ);
GPIOPinTypeGPIOInput(GPIO_PORTJ_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3);
GPIOIntEnable(GPIO_PORTJ_BASE, GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3);
GPIOIntTypeSet(GPIO_PORTJ_BASE,GPIO_PIN_1|GPIO_PIN_2|GPIO_PIN_3,GPIO_RISING_EDGE);
GPIOIntRegister(GPIO_PORTE_BASE, GPIOA_Interrupts_Handler);
/* Enable interrupts */
IntEnable(INT_GPIOJ);
When I Build it, the error:
<Linking>
"../tm4c123gh6pge.cmd", line 41: 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)
When I comment GPIOIntRegister(GPIO_PORTE_BASE, GPIOA_Interrupts_Handler); -> build OK ( GPIOA_Interrupts_Handler() is defined )
I use bios_6_35_01_29, Code Composer Studio 6.2.0, xdctools_3_32_01_22_core, TivaWare_C_Series-2.1.3.156, tirtos_tivac_2_16_01_14