mirror of
https://gitee.com/XZCRAZY/stm32_nfc_lite.git
synced 2026-03-15 10:03:19 +08:00
27 lines
440 B
C
27 lines
440 B
C
#ifndef _APP_NFC_H_
|
|
#define _APP_NFC_H_
|
|
|
|
#include "xz_common.h"
|
|
#include "custom_bus.h"
|
|
#include "nfc04a1_nfctag.h"
|
|
|
|
#include "epdfunc.h"
|
|
#include "app_adc.h"
|
|
// #include "app_timer.h"
|
|
// #include "STM32TimerInterrupt.h"
|
|
// #include "system_clock.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
extern void MX_NFC_Init(void);
|
|
extern void MX_NFC_Process(void);
|
|
extern void ADC_Volt_Process(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|