Merge pull request #61 from flabbergast/adc-fix

[KINETIS] fix ADC LLD bug, grpp access after clear
This commit is contained in:
Fabio Utzig 2016-04-24 18:09:02 -03:00
commit 38acc79534
1 changed files with 3 additions and 2 deletions

View File

@ -104,12 +104,13 @@ OSAL_IRQ_HANDLER(KINETIS_ADC0_IRQ_VECTOR) {
/* At the end of the buffer then we may be finished */
if (adcp->current_index == adcp->number_of_samples) {
/* We are never finished in circular mode */
more = ADCD1.grpp->circular;
_adc_isr_full_code(&ADCD1);
adcp->current_index = 0;
/* We are never finished in circular mode */
more = ADCD1.grpp->circular;
}
if (more) {