1 /* 2 * Copyright 2023, Cypress Semiconductor Corporation (an Infineon company) 3 * SPDX-License-Identifier: Apache-2.0 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 18 #include "cyabs_rtos.h" /* For semaphores */ 19 #include "whd.h" 20 21 22 #ifndef INCLUDED_WHD_WIFI_P2P_H 23 #define INCLUDED_WHD_WIFI_P2P_H 24 25 26 #ifdef __cplusplus 27 extern "C" 28 { 29 #endif 30 31 /** @cond !ADDTHIS*/ 32 33 /** 34 * Set whether the p2p GO is up or not 35 * @param is_up : specify whether the p2p GO is up currently or not 36 */ 37 extern void whd_wifi_p2p_set_go_is_up(whd_driver_t whd_driver, whd_bool_t is_up); 38 39 /** 40 * @return WHD_TRUE if the P2P GO is currently up 41 */ 42 extern whd_bool_t whd_wifi_p2p_is_go_up(whd_driver_t whd_driver); 43 44 #ifdef __cplusplus 45 } /* extern "C" */ 46 #endif 47 48 #endif /* ifndef INCLUDED_WHD_WIFI_P2P_H */ 49 50