pinebuds/services/bt_if_enhanced/inc/bt_status_conv.h

46 lines
1.4 KiB
C
Raw Normal View History

2022-08-15 04:20:27 -05:00
/***************************************************************************
*
* Copyright 2015-2019 BES.
* All rights reserved. All unpublished rights reserved.
*
* No part of this work may be used or reproduced in any form or by any
* means, or stored in a database or retrieval system, without prior written
* permission of BES.
*
* Use of this work is governed by a license granted by BES.
* This work contains confidential and proprietary information of
* BES. which is protected by copyright, trade secret,
* trademark and other intellectual property rights.
*
****************************************************************************/
#ifndef __BT_STATUS_CONV_H__
#define __BT_STATUS_CONV_H__
#include "bluetooth.h"
#include "btlib_type.h"
#include "hal_trace.h"
extern const bt_status_t status_table[];
#if defined(__cplusplus)
extern "C" {
#endif
char *btifstatus2str(bt_status_t status);
char *btstatus2str(BtStatus status);
#if defined(__cplusplus)
}
#endif
//static inline bt_status_t bt_convert_status(BtStatus stack_status)
//{
// // TRACE("%s:input=%d%s,output=%d%s", __func__, stack_status, btstatus2str(stack_status), status_table[stack_status], btifstatus2str(status_table[stack_status]));
//
// if (stack_status <= BT_STATUS_LAST_CODE)
// return status_table[stack_status];
// else
// return BT_STS_LAST_CODE;
//}
//
//#define BT_STATUS(stack_status) bt_convert_status(stack_status)
#endif/*__BT_STATUS_CONV_H__*/