15 lines
212 B
C
15 lines
212 B
C
//
|
|
// Created by hu123456 on 2024/3/8.
|
|
//
|
|
|
|
#ifndef FOC_N_VCC_ADC_H
|
|
#define FOC_N_VCC_ADC_H
|
|
#include "mymain.h"
|
|
|
|
void adc_init(void);
|
|
uint32_t adc_get_result(void);
|
|
float get_VCC(void);
|
|
|
|
|
|
#endif //FOC_N_VCC_ADC_H
|