mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 15:38:11 +01:00
Remove buffer prints
This commit is contained in:
parent
bd55a56db0
commit
43a6a5a850
1 changed files with 0 additions and 2 deletions
|
@ -99,8 +99,6 @@ void RemoteReceiverComponent::dump_config() {
|
||||||
(this->tolerance_mode_ == remote_base::TOLERANCE_MODE_TIME) ? " us" : "%");
|
(this->tolerance_mode_ == remote_base::TOLERANCE_MODE_TIME) ? " us" : "%");
|
||||||
ESP_LOGCONFIG(TAG, " Filter out pulses shorter than: %" PRIu32 " us", this->filter_us_);
|
ESP_LOGCONFIG(TAG, " Filter out pulses shorter than: %" PRIu32 " us", this->filter_us_);
|
||||||
ESP_LOGCONFIG(TAG, " Signal is done after %" PRIu32 " us of no changes", this->idle_us_);
|
ESP_LOGCONFIG(TAG, " Signal is done after %" PRIu32 " us of no changes", this->idle_us_);
|
||||||
ESP_LOGCONFIG(TAG, " Buffer addr: %" PRIx32, (uint32_t) this->store_.buffer);
|
|
||||||
ESP_LOGCONFIG(TAG, " Buffer size: %" PRIu32, (uint32_t) this->store_.buffer_size);
|
|
||||||
if (this->is_failed()) {
|
if (this->is_failed()) {
|
||||||
ESP_LOGE(TAG, "Configuring RMT driver failed: %s (%s)", esp_err_to_name(this->error_code_),
|
ESP_LOGE(TAG, "Configuring RMT driver failed: %s (%s)", esp_err_to_name(this->error_code_),
|
||||||
this->error_string_.c_str());
|
this->error_string_.c_str());
|
||||||
|
|
Loading…
Reference in a new issue