mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-31 15:11:40 +01:00 
			
		
		
		
	RTC V230 add BT AGC saturation protection, replace RTC V229. PHY V362 Power up print: "phy_version: 362.0, 61e8d92, Sep 8 2017, 18:48:13" 1. esp_init_data_v3.bin modify TX target power modify WIFI & BT RX gain table 2. modify phy_close_rf() 3. add phy_set_most_tpw() 4. 26M crystal work OK 5. noise_check_loop ok
		
			
				
	
	
		
			141 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // Copyright 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"
 | |
| #include "sdkconfig.h"
 | |
| 
 | |
| // constrain a value between 'low' and 'high', inclusive
 | |
| #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val)
 | |
| 
 | |
| #define PHY_INIT_MAGIC "PHYINIT"
 | |
| 
 | |
| static const char phy_init_magic_pre[] = PHY_INIT_MAGIC;
 | |
| 
 | |
| /**
 | |
|  * @brief Structure containing default recommended PHY initialization parameters.
 | |
|  */
 | |
| static const esp_phy_init_data_t phy_init_data= { {
 | |
|         3,
 | |
|         3,
 | |
|         0x05,
 | |
|         0x09,
 | |
|         0x06,
 | |
|         0x05,
 | |
|         0x03,
 | |
|         0x06,
 | |
|         0x05,
 | |
|         0x04,
 | |
|         0x06,
 | |
|         0x04,
 | |
|         0x05,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x05,
 | |
|         0x09,
 | |
|         0x06,
 | |
|         0x05,
 | |
|         0x03,
 | |
|         0x06,
 | |
|         0x05,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0x00,
 | |
|         0xfc,
 | |
|         0xfc,
 | |
|         0xfe,
 | |
|         0xf0,
 | |
|         0xf0,
 | |
|         0xf0,
 | |
|         0xe0,
 | |
|         0xe0,
 | |
|         0xe0,
 | |
|         0x18,
 | |
|         0x18,
 | |
|         0x18,
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 78),
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 72),
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 66),
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 60),
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 56),
 | |
|         LIMIT(CONFIG_ESP32_PHY_MAX_TX_POWER * 4, 0, 52),
 | |
|         0,
 | |
|         1,
 | |
|         1,
 | |
|         2,
 | |
|         2,
 | |
|         3,
 | |
|         4,
 | |
|         5,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
|         0,
 | |
| } };
 | |
| 
 | |
| static const char phy_init_magic_post[] = PHY_INIT_MAGIC;
 | |
| 
 |