Home
last modified time | relevance | path

Searched refs:ctrl_flags (Results 1 – 3 of 3) sorted by relevance

/hal_silabs-latest/wiseconnect/components/protocol/wifi/inc/
Dsl_wifi_types.h65 #define IS_QOS_PKT(ctrl_flags) (ctrl_flags & TX_DATA_CTRL_FLAG_QOS_BIT) argument
67 #define IS_4ADDR(ctrl_flags) (ctrl_flags & BIT(0)) argument
68 #define IS_FIXED_DATA_RATE(ctrl_flags) (ctrl_flags & BIT(2)) argument
69 #define IS_TODS(ctrl_flags) (ctrl_flags & BIT(3)) argument
70 #define IS_FROMDS(ctrl_flags) (ctrl_flags & BIT(4)) argument
71 #define IS_CFM_TO_HOST_SET(ctrl_flags) (ctrl_flags & BIT(5)) argument
705 uint8_t ctrl_flags; member
/hal_silabs-latest/wiseconnect/components/device/silabs/si91x/wireless/src/
Dsl_si91x_driver.c2309 if ((!IS_PEER_DS_SUPPORT_ENABLED(feature_bit_map)) && !IS_FIXED_DATA_RATE(control->ctrl_flags)) { in encapsulate_tx_data_packet()
2315 control->ctrl_flags &= ~TX_DATA_CTRL_FLAG_QOS_BIT; in encapsulate_tx_data_packet()
2318 …if ((IS_QOS_PKT(control->ctrl_flags) && !IS_BCAST_MCAST_MAC(control->addr1[0])) && (control->prior… in encapsulate_tx_data_packet()
2322 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()
2331 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()
2335 *frame_ctrl |= IS_TODS(control->ctrl_flags) ? FC_TO_DS : 0; in encapsulate_tx_data_packet()
2336 *frame_ctrl |= IS_FROMDS(control->ctrl_flags) ? FC_FROM_DS : 0; in encapsulate_tx_data_packet()
2345 seq_ctrl = (uint16_t)(get_seq_ctrl(IS_QOS_PKT(control->ctrl_flags)) << 4); in encapsulate_tx_data_packet()
2350 if (IS_4ADDR(control->ctrl_flags)) { in encapsulate_tx_data_packet()
2354 if (IS_QOS_PKT(control->ctrl_flags) && !IS_BCAST_MCAST_MAC(control->addr1[0])) { in encapsulate_tx_data_packet()
[all …]
/hal_silabs-latest/wiseconnect/components/protocol/wifi/si91x/
Dsl_wifi.c2442 if (IS_FIXED_DATA_RATE(control->ctrl_flags)) { in sl_wifi_send_transceiver_data()