mirror of
https://gitee.com/XZCRAZY/stm32_nfc_lite.git
synced 2026-03-19 10:19:44 +08:00
25 lines
422 B
C
25 lines
422 B
C
#ifndef _APP_ADC_H_
|
|
#define _APP_ADC_H_
|
|
|
|
#include "xz_common.h"
|
|
// #include "custom_bus.h"
|
|
// #include "nfc04a1_nfctag.h"
|
|
// #include "xzpic2.h"
|
|
// #include "epdfunc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
// #include "stm32l0xx_ll_adc.h"
|
|
#include "stm32yyxx_ll_adc.h"
|
|
#include "xz_common.h"
|
|
|
|
extern void ADC_Init(void);
|
|
extern uint32_t ADC_READ_Voltage(uint32_t ulPin);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|