guanjiao
2018-10-07 dca9d1109b42085df12402d6b54006a23a9aaa75
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
#ifndef __DW_APP_H__
#define __DW_APP_H__
 
#include "stm32f10x.h"
#include "filters.h"
 
#define TAG_NUM_IN_SYS                256
#define DFT_RAND_DLY_TIM_MS            1
 
extern double dist_cm;
extern uint32_t g_UWB_com_interval;
extern float dis_after_filter;
extern LPFilter_Frac* p_Dis_Filter;        //²â¾àÓõĵÍͨÂ˲¨Æ÷
 
void Dw1000_Init(void);
void Tag_App(void);
void Anchor_App(void);
void tag_sleep_configuraion(void);
extern uint16_t g_Tagdist[256];
extern uint8_t g_flag_Taggetdist[256];
extern void TagDistClear(void);
void Dw1000_App_Init(void);
#endif