Posted on March 09, 2016 at 10:14
I have a thread set up to constantly read 18 ADCs across ADC and ADC3 and fill them into arrays.
void TSK_AdcSensor(void const *argument){
ADC1_Configuration();
ADC3_Configuration();
//Clear the ADC value...
Posted on February 15, 2016 at 13:05
Hi,
I am having problems Reading from ADC3. I have ADC1 and ADC3 set up on separate DMA channels. I have a separate task to fill a single array with both ADCs, however I can't get anything from ADC3, in fac...
Posted on February 17, 2016 at 10:13Ok so, I separated the arrays. Having two threads to monitor ADC1 and ADC3.I ran the debug and thr program crashes dues to a stack overflow. An increase in stack size for both threads has rectified this issue. I s...