only: docs
This commit is contained in:
rusefi 2024-05-09 12:35:59 -04:00
parent f6024d420a
commit 6e84d0084f
1 changed files with 1 additions and 0 deletions

View File

@ -59,6 +59,7 @@ adcsample_t* fastSampleBuffer;
static void adc_callback(ADCDriver *adcp) {
// State may not be complete if we get a callback for "half done"
if (adcp->state == ADC_COMPLETE) {
// here we invoke 'fast' from slow ADC due to https://github.com/rusefi/rusefi/issues/3301
onFastAdcComplete(adcp->samples);
}
}