2016-11-15 10:36:18 +00:00
|
|
|
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include "esp_phy_init.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2018-05-19 04:13:34 +00:00
|
|
|
#define ESP_CAL_DATA_CHECK_FAIL 1
|
|
|
|
|
2016-11-15 10:36:18 +00:00
|
|
|
/**
|
|
|
|
* @file phy.h
|
|
|
|
* @brief Declarations for functions provided by libphy.a
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-01-19 00:18:44 +00:00
|
|
|
* @brief Return ROM function pointer table from PHY library.
|
2016-11-15 10:36:18 +00:00
|
|
|
*/
|
|
|
|
void phy_get_romfunc_addr(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Initialize PHY module and do RF calibration
|
|
|
|
* @param[in] init_data Initialization parameters to be used by the PHY
|
|
|
|
* @param[inout] cal_data As input, calibration data previously obtained. As output, will contain new calibration data.
|
|
|
|
* @param[in] cal_mode RF calibration mode
|
2018-05-19 04:13:34 +00:00
|
|
|
* @return ESP_CAL_DATA_CHECK_FAIL if calibration data checksum fails, other values are reserved for future use
|
2016-11-15 10:36:18 +00:00
|
|
|
*/
|
|
|
|
int register_chipv7_phy(const esp_phy_init_data_t* init_data, esp_phy_calibration_data_t *cal_data, esp_phy_calibration_mode_t cal_mode);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the format version of calibration data used by PHY library.
|
2016-11-17 17:18:39 +00:00
|
|
|
* @return Format version number, OR'ed with BIT(16) if PHY is in WIFI only mode.
|
2016-11-15 10:36:18 +00:00
|
|
|
*/
|
|
|
|
uint32_t phy_get_rf_cal_version();
|
|
|
|
|
2016-11-17 17:18:39 +00:00
|
|
|
/**
|
|
|
|
* @brief Set RF/BB for only WIFI mode or coexist(WIFI & BT) mode
|
|
|
|
* @param[in] true is for only WIFI mode, false is for coexist mode. default is 0.
|
|
|
|
* @return NULL
|
|
|
|
*/
|
|
|
|
void phy_set_wifi_mode_only(bool wifi_only);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set BT the highest priority in coexist mode.
|
|
|
|
* @return NULL
|
|
|
|
*/
|
|
|
|
void coex_bt_high_prio(void);
|
|
|
|
|
2017-04-11 07:44:43 +00:00
|
|
|
/**
|
|
|
|
* @brief Shutdown PHY and RF.
|
|
|
|
*/
|
|
|
|
void phy_close_rf(void);
|
|
|
|
|
2016-11-15 10:36:18 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|