mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 22:53:59 +00:00 
			
		
		
		
	[ledc] Change some logging lines from debug to verbose (#6796)
This commit is contained in:
		| @@ -52,12 +52,12 @@ float ledc_min_frequency_for_bit_depth(uint8_t bit_depth, bool low_frequency) { | |||||||
| } | } | ||||||
|  |  | ||||||
| optional<uint8_t> ledc_bit_depth_for_frequency(float frequency) { | optional<uint8_t> ledc_bit_depth_for_frequency(float frequency) { | ||||||
|   ESP_LOGD(TAG, "Calculating resolution bit-depth for frequency %f", frequency); |   ESP_LOGV(TAG, "Calculating resolution bit-depth for frequency %f", frequency); | ||||||
|   for (int i = MAX_RES_BITS; i >= 1; i--) { |   for (int i = MAX_RES_BITS; i >= 1; i--) { | ||||||
|     const float min_frequency = ledc_min_frequency_for_bit_depth(i, (frequency < 100)); |     const float min_frequency = ledc_min_frequency_for_bit_depth(i, (frequency < 100)); | ||||||
|     const float max_frequency = ledc_max_frequency_for_bit_depth(i); |     const float max_frequency = ledc_max_frequency_for_bit_depth(i); | ||||||
|     if (min_frequency <= frequency && frequency <= max_frequency) { |     if (min_frequency <= frequency && frequency <= max_frequency) { | ||||||
|       ESP_LOGD(TAG, "Resolution calculated as %d", i); |       ESP_LOGV(TAG, "Resolution calculated as %d", i); | ||||||
|       return i; |       return i; | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user