12345678910111213141516171819202122232425262728293031 |
- /*
- * Copyright (c) 2018 Actions Semiconductor Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- /**
- * @file bt service base define.
- * Not need direct include this head file, just need include <btservice_api.h>.
- * this head file include by btservice_api.h
- */
- #ifndef _BTSERVICE_BASE_H_
- #define _BTSERVICE_BASE_H_
- /**
- * @cond INTERNAL_HIDDEN
- */
- #define __IN_BT_SECTION __in_section_unique(bthost_bss)
- /** bluetooth device address */
- typedef struct {
- uint8_t val[6];
- } bd_address_t;
- /**
- * INTERNAL_HIDDEN @endcond
- */
- #endif
|