Update ld2410 logging (#4395)

This commit is contained in:
Jesse Hills 2023-02-09 07:30:00 +13:00 committed by GitHub
parent 40df3aa55e
commit b5c47b9669
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,11 +25,12 @@ void LD2410Component::dump_config() {
this->set_config_mode_(true); this->set_config_mode_(true);
this->get_version_(); this->get_version_();
this->set_config_mode_(false); this->set_config_mode_(false);
ESP_LOGCONFIG(" ", "Firmware Version : %u.%u.%u%u%u%u", this->version_[0], this->version_[1], this->version_[2], ESP_LOGCONFIG(TAG, " Firmware Version : %u.%u.%u%u%u%u", this->version_[0], this->version_[1], this->version_[2],
this->version_[3], this->version_[4], this->version_[5]); this->version_[3], this->version_[4], this->version_[5]);
} }
void LD2410Component::setup() { void LD2410Component::setup() {
ESP_LOGCONFIG(TAG, "Setting up LD2410...");
this->set_config_mode_(true); this->set_config_mode_(true);
this->set_max_distances_timeout_(this->max_move_distance_, this->max_still_distance_, this->timeout_); this->set_max_distances_timeout_(this->max_move_distance_, this->max_still_distance_, this->timeout_);
// Configure Gates sensitivity // Configure Gates sensitivity
@ -44,8 +45,9 @@ void LD2410Component::setup() {
this->set_gate_threshold_(8, this->rg8_move_threshold_, this->rg8_still_threshold_); this->set_gate_threshold_(8, this->rg8_move_threshold_, this->rg8_still_threshold_);
this->get_version_(); this->get_version_();
this->set_config_mode_(false); this->set_config_mode_(false);
ESP_LOGI(" ", "Firmware Version : %u.%u.%u%u%u%u", this->version_[0], this->version_[1], this->version_[2], ESP_LOGCONFIG(TAG, "Firmware Version : %u.%u.%u%u%u%u", this->version_[0], this->version_[1], this->version_[2],
this->version_[3], this->version_[4], this->version_[5]); this->version_[3], this->version_[4], this->version_[5]);
ESP_LOGCONFIG(TAG, "LD2410 setup complete.");
} }
void LD2410Component::loop() { void LD2410Component::loop() {
@ -166,7 +168,7 @@ void LD2410Component::handle_periodic_data_(uint8_t *buffer, int len) {
} }
void LD2410Component::handle_ack_data_(uint8_t *buffer, int len) { void LD2410Component::handle_ack_data_(uint8_t *buffer, int len) {
ESP_LOGI(TAG, "Handling ACK DATA for COMMAND"); ESP_LOGV(TAG, "Handling ACK DATA for COMMAND");
if (len < 10) { if (len < 10) {
ESP_LOGE(TAG, "Error with last command : incorrect length"); ESP_LOGE(TAG, "Error with last command : incorrect length");
return; return;
@ -186,13 +188,13 @@ void LD2410Component::handle_ack_data_(uint8_t *buffer, int len) {
switch (buffer[COMMAND]) { switch (buffer[COMMAND]) {
case lowbyte(CMD_ENABLE_CONF): case lowbyte(CMD_ENABLE_CONF):
ESP_LOGD(TAG, "Handled Enable conf command"); ESP_LOGV(TAG, "Handled Enable conf command");
break; break;
case lowbyte(CMD_DISABLE_CONF): case lowbyte(CMD_DISABLE_CONF):
ESP_LOGD(TAG, "Handled Disabled conf command"); ESP_LOGV(TAG, "Handled Disabled conf command");
break; break;
case lowbyte(CMD_VERSION): case lowbyte(CMD_VERSION):
ESP_LOGD(TAG, "FW Version is: %u.%u.%u%u%u%u", buffer[13], buffer[12], buffer[17], buffer[16], buffer[15], ESP_LOGV(TAG, "FW Version is: %u.%u.%u%u%u%u", buffer[13], buffer[12], buffer[17], buffer[16], buffer[15],
buffer[14]); buffer[14]);
this->version_[0] = buffer[13]; this->version_[0] = buffer[13];
this->version_[1] = buffer[12]; this->version_[1] = buffer[12];
@ -203,7 +205,7 @@ void LD2410Component::handle_ack_data_(uint8_t *buffer, int len) {
break; break;
case lowbyte(CMD_GATE_SENS): case lowbyte(CMD_GATE_SENS):
ESP_LOGD(TAG, "Handled sensitivity command"); ESP_LOGV(TAG, "Handled sensitivity command");
break; break;
case lowbyte(CMD_QUERY): // Query parameters response case lowbyte(CMD_QUERY): // Query parameters response
{ {