Update ble lib for h2 beta1

This commit is contained in:
GengYuchao
2022-06-24 20:59:41 +08:00
parent 29a2c83173
commit 07a470bccc
5 changed files with 41 additions and 10 deletions

View File

@@ -119,9 +119,8 @@ esp_err_t esp_ble_tx_power_set(esp_ble_power_type_t power_type, esp_power_level_
esp_power_level_t esp_ble_tx_power_get(esp_ble_power_type_t power_type);
#define CONFIG_VERSION 0x02109228
#define CONFIG_VERSION 0x20220409
#define CONFIG_MAGIC 0x5A5AA5A5
/**
* @brief Controller config options, depend on config mask.
* Config mask indicate which functions enabled, this means
@@ -170,8 +169,12 @@ typedef struct {
uint8_t ble_hci_uart_uart_parity;
uint8_t enable_tx_cca;
uint8_t cca_rssi_thresh;
uint8_t cca_drop_mode;
int8_t cca_low_tx_pwr;
uint8_t sleep_en;
uint8_t coex_phy_coded_tx_rx_time_limit;
uint8_t dis_scan_backoff;
uint8_t scan_classify_filter_enable;
uint32_t config_magic;
} esp_bt_controller_config_t;

View File

@@ -10,6 +10,7 @@
#include <stdint.h>
#include <stdbool.h>
#include "esp_err.h"
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
@@ -192,7 +193,12 @@ extern "C" {
#define BLE_LL_CONN_DEF_AUTH_PYLD_TMO_N (3000)
#define RTC_FREQ_N (32000) /* in Hz */
#if CONFIG_RTC_CLK_SRC_EXT_CRYS
#define RTC_FREQ_N (32768) /* in Hz */
#else
#pragma message "RTC clock source not available"
#endif
#define BLE_LL_TX_PWR_DBM_N (0)