btservice_base.h 544 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2018 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file bt service base define.
  8. * Not need direct include this head file, just need include <btservice_api.h>.
  9. * this head file include by btservice_api.h
  10. */
  11. #ifndef _BTSERVICE_BASE_H_
  12. #define _BTSERVICE_BASE_H_
  13. /**
  14. * @cond INTERNAL_HIDDEN
  15. */
  16. #define __IN_BT_SECTION __in_section_unique(bthost_bss)
  17. /** bluetooth device address */
  18. typedef struct {
  19. uint8_t val[6];
  20. } bd_address_t;
  21. /**
  22. * INTERNAL_HIDDEN @endcond
  23. */
  24. #endif