controller.h 662 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /** @file
  2. * @brief Bluetooth subsystem controller APIs.
  3. */
  4. /*
  5. * Copyright (c) 2018 Codecoup
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_CONTROLLER_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_CONTROLLER_H_
  11. /**
  12. * @brief Bluetooth Controller
  13. * @defgroup bt_ctrl Bluetooth Controller
  14. * @ingroup bluetooth
  15. * @{
  16. */
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /** @brief Set public address for controller
  21. *
  22. * Should be called before bt_enable().
  23. *
  24. * @param addr Public address
  25. */
  26. void bt_ctlr_set_public_addr(const uint8_t *addr);
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. /**
  31. * @}
  32. */
  33. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_CONTROLLER_H_ */