smp_bt.h 661 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright Runtime.io 2018. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief Bluetooth transport for the mcumgr SMP protocol.
  8. */
  9. #ifndef ZEPHYR_INCLUDE_MGMT_SMP_BT_H_
  10. #define ZEPHYR_INCLUDE_MGMT_SMP_BT_H_
  11. #include <zephyr/types.h>
  12. struct bt_conn;
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief Registers the SMP Bluetooth service.
  18. *
  19. * @return 0 on success; negative error code on failure.
  20. */
  21. int smp_bt_register(void);
  22. /**
  23. * @brief Unregisters the SMP Bluetooth service.
  24. *
  25. * @return 0 on success; negative error code on failure.
  26. */
  27. int smp_bt_unregister(void);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif