-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdeca_param_types.h
executable file
·80 lines (60 loc) · 2.15 KB
/
deca_param_types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*! ----------------------------------------------------------------------------
* @file deca_param_types.h
* @brief Decawave general type definitions for configuration structures
*
* @attention
*
* Copyright 2013 (c) Decawave Ltd, Dublin, Ireland.
*
* All rights reserved.
*
*/
#ifndef _DECA_PARAM_TYPES_H_
#define _DECA_PARAM_TYPES_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "deca_types.h"
#define NUM_BR 3
#define NUM_PRF 2
#define NUM_PACS 4
#define NUM_BW 2 //2 bandwidths are supported
#define NUM_SFD 2 //supported number of SFDs - standard = 0, non-standard = 1
#define NUM_CH 6 //supported channels are 1, 2, 3, 4, 5, 7
#define NUM_CH_SUPPORTED 8 //supported channels are '0', 1, 2, 3, 4, 5, '6', 7
#define PCODES 25 //supported preamble codes
typedef struct {
uint32 lo32;
uint16 target[NUM_PRF];
} agc_cfg_struct ;
extern const agc_cfg_struct agc_config ;
//SFD threshold settings for 110k, 850k, 6.8Mb standard and non-standard
extern const uint16 sftsh[NUM_BR][NUM_SFD];
extern const uint16 dtune1[NUM_PRF];
#define XMLPARAMS_VERSION (1.17f)
extern const uint32 fs_pll_cfg[NUM_CH];
extern const uint8 fs_pll_tune[NUM_CH];
extern const uint8 rx_config[NUM_BW];
extern const uint32 tx_config[NUM_CH];
extern const uint8 dwnsSFDlen[NUM_BR]; //length of SFD for each of the bitrates
extern const uint32 digital_bb_config[NUM_PRF][NUM_PACS];
extern const uint8 chan_idx[NUM_CH_SUPPORTED];
#define TEMP_COMP_FACTOR_CH2 (327) //(INT) (0.0798 * 4096)
#define TEMP_COMP_FACTOR_CH5 (607) //(INT) (0.1482 * 4096)
#define SAR_TEMP_TO_CELCIUS_CONV (1.14)
#define SAR_VBAT_TO_VOLT_CONV (1.0/173)
#define DCELCIUS_TO_SAR_TEMP_CONV ((int)((0.10/1.14)*256))
#define MVOLT_TO_SAR_VBAT_CONV (173.0/1000)
#define MIXER_GAIN_STEP (0.5)
#define DA_ATTN_STEP (2.5)
#define MIX_DA_FACTOR (DA_ATTN_STEP/MIXER_GAIN_STEP)
#define PEAK_MULTPLIER (0x60) //3 -> (0x3 * 32) & 0x00E0
#define N_STD_FACTOR (13)
#define LDE_PARAM1 (PEAK_MULTPLIER | N_STD_FACTOR)
#define LDE_PARAM3_16 (0x1607)
#define LDE_PARAM3_64 (0x0607)
extern const uint16 lde_replicaCoeff[PCODES];
#ifdef __cplusplus
}
#endif
#endif