mirror of
https://github.com/yoboujon/dumber.git
synced 2025-06-09 06:10:49 +02:00
17 lines
296 B
C
17 lines
296 B
C
#ifndef Battery_H
|
|
#define Battery_H
|
|
|
|
#include "stm32f10x.h"
|
|
|
|
|
|
|
|
extern __IO uint16_t ADCConvertedValue[16];
|
|
void MAP_batteryPin(void);
|
|
void DMA_BAT(void);
|
|
void ADC1_CONFIG(void);
|
|
void INIT_IT_DMA(void);
|
|
void startACQDMA(void);
|
|
void voltagePrepare(void);
|
|
|
|
#endif /* Battery_H */
|
|
|