1 /* 2 * Copyright (c) 2024 Nordic Semiconductor ASA 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 /** 8 * @brief Header containing SoftAP specific declarations for the FMAC IF Layer 9 * of the Wi-Fi driver. 10 */ 11 12 #ifndef __FMAC_AP_H__ 13 #define __FMAC_AP_H__ 14 15 #include "host_rpu_data_if.h" 16 #include "system/fmac_structs.h" 17 18 19 enum nrf_wifi_status sap_client_update_pmmode(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx, 20 struct nrf_wifi_sap_client_pwrsave *config); 21 22 enum nrf_wifi_status sap_client_ps_get_frames(struct nrf_wifi_fmac_dev_ctx *fmac_dev_ctx, 23 struct nrf_wifi_sap_ps_get_frames *config); 24 #endif /* __FMAC_AP_H__ */ 25