Correction to respect the project code style.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10017 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
tfateba 2017-01-04 19:35:45 +00:00
parent ec8fcc30ca
commit 4f151d41f1
1 changed files with 2 additions and 1 deletions

View File

@ -91,7 +91,8 @@ OSAL_IRQ_HANDLER(ADC_vect) {
if (ADCD1.currentBufferPosition == bufferSize) {
_adc_isr_full_code(&ADCD1);
} else {
}
else {
setAdcChannel(getAdcChannelNumberFromMask(ADCD1.grpp->channelsMask,currentChannel));
ADCSRA |= 1 << ADSC;
}