chore(mr60fda2): correct typo in 'result'

This commit is contained in:
Spencer Yan 2024-10-22 16:28:12 +08:00
parent 88e80e8247
commit c59873cea2
2 changed files with 10 additions and 10 deletions

View File

@ -165,8 +165,8 @@ void MR60FDA2Component::split_frame_(uint8_t buffer) {
this->current_frame_type_ += buffer; this->current_frame_type_ += buffer;
if ((this->current_frame_type_ == IS_FALL_TYPE_BUFFER) || if ((this->current_frame_type_ == IS_FALL_TYPE_BUFFER) ||
(this->current_frame_type_ == PEOPLE_EXIST_TYPE_BUFFER) || (this->current_frame_type_ == PEOPLE_EXIST_TYPE_BUFFER) ||
(this->current_frame_type_ == RUSULT_INSTALL_HEIGHT) || (this->current_frame_type_ == RUSULT_PARAMETERS) || (this->current_frame_type_ == RESULT_INSTALL_HEIGHT) || (this->current_frame_type_ == RESULT_PARAMETERS) ||
(this->current_frame_type_ == RUSULT_HEIGHT_THRESHOLD) || (this->current_frame_type_ == RUSULT_SENSITIVITY)) { (this->current_frame_type_ == RESULT_HEIGHT_THRESHOLD) || (this->current_frame_type_ == RESULT_SENSITIVITY)) {
this->current_frame_len_++; this->current_frame_len_++;
this->current_frame_buf_[this->current_frame_len_ - 1] = buffer; this->current_frame_buf_[this->current_frame_len_ - 1] = buffer;
this->current_frame_locate_++; this->current_frame_locate_++;
@ -235,7 +235,7 @@ void MR60FDA2Component::process_frame_() {
this->people_exist_binary_sensor_->publish_state(this->current_frame_buf_[LEN_TO_HEAD_CKSUM]); this->people_exist_binary_sensor_->publish_state(this->current_frame_buf_[LEN_TO_HEAD_CKSUM]);
this->current_frame_locate_ = LOCATE_FRAME_HEADER; this->current_frame_locate_ = LOCATE_FRAME_HEADER;
break; break;
case RUSULT_INSTALL_HEIGHT: case RESULT_INSTALL_HEIGHT:
if (this->current_data_buf_[0]) { if (this->current_data_buf_[0]) {
ESP_LOGD(TAG, "Successfully set the mounting height"); ESP_LOGD(TAG, "Successfully set the mounting height");
} else { } else {
@ -243,7 +243,7 @@ void MR60FDA2Component::process_frame_() {
} }
this->current_frame_locate_ = LOCATE_FRAME_HEADER; this->current_frame_locate_ = LOCATE_FRAME_HEADER;
break; break;
case RUSULT_HEIGHT_THRESHOLD: case RESULT_HEIGHT_THRESHOLD:
if (this->current_data_buf_[0]) { if (this->current_data_buf_[0]) {
ESP_LOGD(TAG, "Successfully set the height threshold"); ESP_LOGD(TAG, "Successfully set the height threshold");
} else { } else {
@ -251,7 +251,7 @@ void MR60FDA2Component::process_frame_() {
} }
this->current_frame_locate_ = LOCATE_FRAME_HEADER; this->current_frame_locate_ = LOCATE_FRAME_HEADER;
break; break;
case RUSULT_SENSITIVITY: case RESULT_SENSITIVITY:
if (this->current_data_buf_[0]) { if (this->current_data_buf_[0]) {
ESP_LOGD(TAG, "Successfully set the sensitivity"); ESP_LOGD(TAG, "Successfully set the sensitivity");
} else { } else {
@ -259,7 +259,7 @@ void MR60FDA2Component::process_frame_() {
} }
this->current_frame_locate_ = LOCATE_FRAME_HEADER; this->current_frame_locate_ = LOCATE_FRAME_HEADER;
break; break;
case RUSULT_PARAMETERS: case RESULT_PARAMETERS:
// ESP_LOGD( // ESP_LOGD(
// TAG, // TAG,
// "GET CURRENT_FRAME: 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x 0x%02x 0x%02x 0x%02x", // "GET CURRENT_FRAME: 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x 0x%02x 0x%02x 0x%02x, 0x%02x 0x%02x 0x%02x 0x%02x",

View File

@ -30,10 +30,10 @@ static const uint8_t LEN_TO_DATA_FRAME = 9;
static const uint8_t FRAME_HEADER_BUFFER = 0x01; static const uint8_t FRAME_HEADER_BUFFER = 0x01;
static const uint16_t IS_FALL_TYPE_BUFFER = 0x0E02; static const uint16_t IS_FALL_TYPE_BUFFER = 0x0E02;
static const uint16_t PEOPLE_EXIST_TYPE_BUFFER = 0x0F09; static const uint16_t PEOPLE_EXIST_TYPE_BUFFER = 0x0F09;
static const uint16_t RUSULT_INSTALL_HEIGHT = 0x0E04; static const uint16_t RESULT_INSTALL_HEIGHT = 0x0E04;
static const uint16_t RUSULT_PARAMETERS = 0x0E06; static const uint16_t RESULT_PARAMETERS = 0x0E06;
static const uint16_t RUSULT_HEIGHT_THRESHOLD = 0x0E08; static const uint16_t RESULT_HEIGHT_THRESHOLD = 0x0E08;
static const uint16_t RUSULT_SENSITIVITY = 0x0E0A; static const uint16_t RESULT_SENSITIVITY = 0x0E0A;
enum FrameLocation { enum FrameLocation {
LOCATE_FRAME_HEADER, LOCATE_FRAME_HEADER,