1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
| #ifndef __DW_APP_H__
| #define __DW_APP_H__
|
| #include "stm32f10x.h"
|
| #define TAG_NUM_IN_SYS 256
| #define DFT_RAND_DLY_TIM_MS 1
|
| extern double dist_cm;
|
| void Dw1000_Init(void);
| void Tag_App(void);
| void Anchor_App(void);
|
| #endif
|
|