mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-08 04:02:27 +00:00
27 lines
499 B
C
27 lines
499 B
C
/*
|
|
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include "hal/ieee802154_common_ll.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern uint32_t bt_bb_get_rssi_comp(void);
|
|
|
|
#define IEEE802154_TXPOWER_VALUE_MAX 20
|
|
#define IEEE802154_TXPOWER_VALUE_MIN -24
|
|
#define IEEE802154_TXPOWER_INDEX_MIN 0
|
|
|
|
#define IEEE802154_RSSI_COMPENSATION_VALUE bt_bb_get_rssi_comp()
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|