Go to the source code of this file.
#define AR_PHY_CCA_FILTERWINDOW_LENGTH 5 |
#define ATH9K_NF_CAL_HIST_MAX 5 |
#define INI_RA |
( |
|
iniarray, |
|
|
|
row, |
|
|
|
column |
|
) |
| (((iniarray)->ia_array)[(row) * ((iniarray)->ia_columns) + (column)]) |
#define INIT_CAL |
( |
|
_perCal | ) |
|
Value:do { \
(_perCal)->calNext =
NULL; \
} while (0)
Definition at line 42 of file calib.h.
#define INIT_INI_ARRAY |
( |
|
iniarray, |
|
|
|
array |
|
) |
| |
Value:do { \
(iniarray)->ia_array = (
u32 *)(array); \
} while (0)
Definition at line 33 of file calib.h.
#define INSERT_CAL |
( |
|
_ahp, |
|
|
|
_perCal |
|
) |
| |
Value:do { \
if ((_ahp)->cal_list_last ==
NULL) { \
(_ahp)->cal_list = \
(_ahp)->cal_list_last = (_perCal); \
((_ahp)->cal_list_last)->calNext = (_perCal); \
} else { \
((_ahp)->cal_list_last)->calNext = (_perCal); \
(_ahp)->cal_list_last = (_perCal); \
(_perCal)->calNext = (_ahp)->cal_list; \
} \
} while (0)
Definition at line 47 of file calib.h.
#define MAX_CAL_SAMPLES 64 |
#define MAX_PACAL_SKIPCOUNT 8 |
#define MIN_CAL_SAMPLES 1 |
#define NUM_NF_READINGS 6 |
#define PER_MAX_LOG_COUNT 10 |
#define PER_MIN_LOG_COUNT 2 |
- Enumerator:
CAL_INACTIVE |
|
CAL_WAITING |
|
CAL_RUNNING |
|
CAL_DONE |
|
Definition at line 60 of file calib.h.