drv_wlan.h 411 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2006-2021, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2018-08-30 ZeroFree the first version
  9. */
  10. #ifndef __DRV_WLAN_H__
  11. #define __DRV_WLAN_H__
  12. #include <rtthread.h>
  13. int rt_hw_wlan_init(void);
  14. int rt_hw_wlan_get_initialize_status(void);
  15. int rt_hw_wlan_wait_init_done(rt_uint32_t time_ms);
  16. #endif