1
0
This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
RealtimeOscilloscope/Core/Src/isrs.cpp

15 lines
234 B
C++
Raw Normal View History

2023-12-12 12:58:11 +00:00
/*
* 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);
}