mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Fix wifi ble coexistence check (#2573)
This commit is contained in:
		| @@ -159,8 +159,15 @@ def final_validate_power_esp32_ble(value): | ||||
|         "esp32_ble_server", | ||||
|         "esp32_ble_tracker", | ||||
|     ]: | ||||
|         if conflicting not in fv.full_config.get(): | ||||
|             continue | ||||
|  | ||||
|         try: | ||||
|             cv.require_framework_version(esp32_arduino=cv.Version(1, 0, 5))(None) | ||||
|             # Only arduino 1.0.5+ and esp-idf impacted | ||||
|             cv.require_framework_version( | ||||
|                 esp32_arduino=cv.Version(1, 0, 5), | ||||
|                 esp_idf=cv.Version(4, 0, 0), | ||||
|             )(None) | ||||
|         except cv.Invalid: | ||||
|             pass | ||||
|         else: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user