Other Parts Discussed in Thread: LM3S2965
Hi,
I'm Using LM3S2965 Controller, now shifted to TIVA TM4C1231H6PZ Controller.
I have ported earlier version to tiva by following software migration document.
i'm facing problem with execution. when i enter into debug mode and run the code it is going to fault isr.
when i go with step by step process using "step into" i found in adc decleration it is going into fault isr.
SysCtlPeripheralEnable(SYSCTL_PERIPH_ADC0);
SysCtlPeripheralEnable(SYSCTL_PERIPH_ADC1);
//Set ADC Sampling speed
SysCtlADCSpeedSet(SYSCTL_ADCSPEED_250KSPS);
//Disable Sequencers
ADCSequenceDisable(ADC0_BASE, 0);
my program is going to infinite loop after entering into "ADCSequenceDisable" function.
please provide me with solution.
Thankyou