testing.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /**
  2. * @file testing.h
  3. * @brief Internal API for Bluetooth testing.
  4. */
  5. /*
  6. * Copyright (c) 2017 Intel Corporation
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_
  11. #define ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_
  12. #if defined(CONFIG_BT_MESH)
  13. #include <bluetooth/mesh.h>
  14. #endif /* CONFIG_BT_MESH */
  15. /**
  16. * @brief Bluetooth testing
  17. * @defgroup bt_test_cb Bluetooth testing callbacks
  18. * @ingroup bluetooth
  19. * @{
  20. */
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /** @brief Bluetooth Testing callbacks structure.
  25. *
  26. * Callback structure to be used for Bluetooth testing purposes.
  27. * Allows access to Bluetooth stack internals, not exposed by public API.
  28. */
  29. struct bt_test_cb {
  30. #if defined(CONFIG_BT_MESH)
  31. void (*mesh_net_recv)(uint8_t ttl, uint8_t ctl, uint16_t src, uint16_t dst,
  32. const void *payload, size_t payload_len);
  33. void (*mesh_model_bound)(uint16_t addr, struct bt_mesh_model *model,
  34. uint16_t key_idx);
  35. void (*mesh_model_unbound)(uint16_t addr, struct bt_mesh_model *model,
  36. uint16_t key_idx);
  37. void (*mesh_prov_invalid_bearer)(uint8_t opcode);
  38. void (*mesh_trans_incomp_timer_exp)(void);
  39. #endif /* CONFIG_BT_MESH */
  40. sys_snode_t node;
  41. };
  42. /** Register callbacks for Bluetooth testing purposes
  43. *
  44. * @param cb bt_test_cb callback structure
  45. */
  46. void bt_test_cb_register(struct bt_test_cb *cb);
  47. /** Unregister callbacks for Bluetooth testing purposes
  48. *
  49. * @param cb bt_test_cb callback structure
  50. */
  51. void bt_test_cb_unregister(struct bt_test_cb *cb);
  52. /** Send Friend Subscription List Add message.
  53. *
  54. * Used by Low Power node to send the group address for which messages are to
  55. * be stored by Friend node.
  56. *
  57. * @param group Group address
  58. *
  59. * @return Zero on success or (negative) error code otherwise.
  60. */
  61. int bt_test_mesh_lpn_group_add(uint16_t group);
  62. /** Send Friend Subscription List Remove message.
  63. *
  64. * Used by Low Power node to remove the group addresses from Friend node
  65. * subscription list. Messages sent to those addresses will not be stored
  66. * by Friend node.
  67. *
  68. * @param groups Group addresses
  69. * @param groups_count Group addresses count
  70. *
  71. * @return Zero on success or (negative) error code otherwise.
  72. */
  73. int bt_test_mesh_lpn_group_remove(uint16_t *groups, size_t groups_count);
  74. /** Clear replay protection list cache.
  75. *
  76. * @return Zero on success or (negative) error code otherwise.
  77. */
  78. int bt_test_mesh_rpl_clear(void);
  79. /**
  80. * @}
  81. */
  82. #ifdef __cplusplus
  83. }
  84. #endif
  85. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_ */