Part Number: TM4C123GH6PGE
Tool/software: Code Composer Studio
Hello everyone,
Thanks to suggest my previous questions.
Today i am getting strangest problem in CCS V8. In previous we developed the code for sd card and real time clock(Hibernate) interfacing to the TM4C123GH6PGE microcontroller for data logging by time and date. We developed in ccs v6, its worked good and we tested it. But currently we shifted to ccs v8. We took the same workspace which was developed in ccs v6 and compile and execute in ccs v8. It showing the line below immediately.
void
ResetISR(void)
{
//
// Jump to the CCS C initialization routine. This will enable the
// floating-point unit as well, so that does not need to be done here.
//
__asm(" .global _c_int00\n"
" b.w _c_int00");
}
And we are using below interrupts according their priority
IntMasterEnable();
IntPrioritySet(INT_TIMER0A, 0x00);
IntPrioritySet(INT_PWM0_0_TM4C123, 0x20);
IntPrioritySet(INT_PWM0_1_TM4C123, 0x40);
IntPrioritySet(INT_PWM0_2_TM4C123, 0x60);
IntPrioritySet(INT_ADC0SS0_TM4C123, 0x80);
IntPrioritySet(INT_TIMER1A, 0xA0);
IntPrioritySet( INT_HIBERNATE_TM4C123, 0xC0);
IntPrioritySet(FAULT_SYSTICK, 0xE0);
previous version: CCS V6 in windows 7 OS
My current Version: CCS V8 in windows 10 OS.
I request you kindly please suggest me why i am getting this problem, and please suggest me how to resolve the issue.
Thanks,
Srinu.