1
0

questions + read adc3

This commit is contained in:
2023-12-12 13:58:11 +01:00
parent 2b9655cdce
commit 01c5606a09
9 changed files with 102 additions and 4 deletions

14
Core/Src/isrs.cpp Normal file
View File

@@ -0,0 +1,14 @@
/*
* isrs.cpp
*
* Created on: Dec 12, 2023
* Author: remi.heredero
*/
#include "stm32f7xx_hal.h"
extern "C" void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef * hadc) {
volatile uint32_t value = HAL_ADC_GetValue(hadc);
}