mesh.h 760 B

123456789101112131415161718192021222324252627282930
  1. /** @file
  2. * @brief Bluetooth mesh Profile APIs.
  3. */
  4. /*
  5. * Copyright (c) 2017 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_
  11. #include <zephyr/types.h>
  12. #include <stddef.h>
  13. #include <net/buf.h>
  14. #include <bluetooth/mesh/msg.h>
  15. #include <bluetooth/mesh/access.h>
  16. #include <bluetooth/mesh/main.h>
  17. #include <bluetooth/mesh/cfg.h>
  18. #include <bluetooth/mesh/cfg_srv.h>
  19. #include <bluetooth/mesh/health_srv.h>
  20. #include <bluetooth/mesh/cfg_cli.h>
  21. #include <bluetooth/mesh/health_cli.h>
  22. #include <bluetooth/mesh/proxy.h>
  23. #include <bluetooth/mesh/heartbeat.h>
  24. #include <bluetooth/mesh/cdb.h>
  25. #include <bluetooth/mesh/cfg.h>
  26. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_MESH_H_ */