bsal_srv_dis.h 456 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-05-28 Supperthomas the first version
  9. */
  10. #ifndef __BSAL_SRV_BLUFI_H__
  11. #define __BSAL_SRV_BLUFI_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include "stdint.h"
  16. #include "stdbool.h"
  17. void bsal_le_blufi_svr_init(void *stack_ptr, void *app_callback);
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif