Skip to content
Snippets Groups Projects
adc_dma.h 197 B
#ifndef _ADC_DMA_H
#define _ADC_DMA_H

#ifdef __cplusplus
extern "C" {
#endif

#include "stm32f4xx.h"

void adc_init(void);
uint16_t adc_get_temperature(void);

#ifdef __cplusplus
}
#endif

#endif