Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_phy_cert_test.h"
phy_args_t
phy_wifi_tx_t
phy_wifi_rx_t
phy_wifiscwout_t
phy_wifi_tx_s
phy_wifi_rx_s
phy_ble_tx_t
phy_ble_rx_t
phy_bt_tx_tone_t
phy_ble_tx_s
phy_ble_rx_s
phy_gpio_output_set_t
register_phy_cmd();
Files
loading (1/3)...
SourceVuESP-IDF Framework and Examplescert_test samplemain/cmd_phy.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Unlicense OR CC0-1.0 *//* ... */ #pragma once #ifdef __cplusplus extern "C" { #endif #include "esp_phy_cert_test.h" typedef struct { struct arg_int *enable; struct arg_end *end; }{ ... } phy_args_t; #if SOC_WIFI_SUPPORTED typedef struct { struct arg_int *channel; struct arg_int *rate; struct arg_int *attenuation; struct arg_int *length_byte; struct arg_int *packet_delay; struct arg_int *packet_num; struct arg_end *end; }{ ... } phy_wifi_tx_t; typedef struct { struct arg_int *channel; struct arg_int *rate; struct arg_end *end; }{ ... } phy_wifi_rx_t; typedef struct { struct arg_int *enable; struct arg_int *channel; struct arg_int *attenuation; struct arg_end *end; }{ ... } phy_wifiscwout_t; typedef struct { uint32_t channel; esp_phy_wifi_rate_t rate; int8_t backoff; uint32_t length_byte; uint32_t packet_delay; uint32_t packet_num; }{ ... } phy_wifi_tx_s; typedef struct { uint32_t channel; esp_phy_wifi_rate_t rate; }{ ... } phy_wifi_rx_s;/* ... */ #endif #if SOC_BT_SUPPORTED typedef struct { struct arg_int *txpwr; struct arg_int *channel; struct arg_int *len; struct arg_int *data_type; struct arg_int *syncw; struct arg_int *rate; struct arg_int *tx_num_in; struct arg_end *end; }{ ... } phy_ble_tx_t; typedef struct { struct arg_int *channel; struct arg_int *syncw; struct arg_int *rate; struct arg_end *end; }{ ... } phy_ble_rx_t; typedef struct { struct arg_int *start; struct arg_int *channel; struct arg_int *attenuation; struct arg_end *end; }{ ... } phy_bt_tx_tone_t; typedef struct { uint32_t txpwr; uint32_t channel; uint32_t len; esp_phy_ble_type_t data_type; uint32_t syncw; esp_phy_ble_rate_t rate; uint32_t tx_num_in; }{ ... } phy_ble_tx_s; typedef struct { uint32_t channel; uint32_t syncw; esp_phy_ble_rate_t rate; }{ ... } phy_ble_rx_s;/* ... */ #endif typedef struct { struct arg_int *gpio_number; struct arg_int *gpio_level; struct arg_end *end; }{ ... } phy_gpio_output_set_t; void register_phy_cmd(void); #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.