mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
components/esp_matter: Add missing elements in data model
This commit is contained in:
@@ -1449,6 +1449,14 @@ command_t *create_time_snap_shot_response(cluster_t *cluster)
|
||||
return esp_matter::command::create(cluster, GeneralDiagnostics::Commands::TimeSnapshotResponse::Id, COMMAND_FLAG_GENERATED,
|
||||
NULL);
|
||||
}
|
||||
command_t *create_payload_test_request(cluster_t *cluster)
|
||||
{
|
||||
return esp_matter::command::create(cluster, GeneralDiagnostics::Commands::PayloadTestRequest::Id, COMMAND_FLAG_ACCEPTED, NULL);
|
||||
}
|
||||
command_t *create_payload_test_response(cluster_t *cluster)
|
||||
{
|
||||
return esp_matter::command::create(cluster, GeneralDiagnostics::Commands::PayloadTestResponse::Id, COMMAND_FLAG_GENERATED, NULL);
|
||||
}
|
||||
|
||||
} /* command */
|
||||
} /* general_diagnostics */
|
||||
@@ -1896,6 +1904,11 @@ command_t *create_stay_active_request(cluster_t *cluster)
|
||||
return esp_matter::command::create(cluster, IcdManagement::Commands::StayActiveRequest::Id, COMMAND_FLAG_ACCEPTED,
|
||||
esp_matter_command_callback_stay_active_request);
|
||||
}
|
||||
command_t *create_stay_active_response(cluster_t *cluster)
|
||||
{
|
||||
return esp_matter::command::create(cluster, IcdManagement::Commands::StayActiveResponse::Id,
|
||||
COMMAND_FLAG_GENERATED, NULL);
|
||||
}
|
||||
|
||||
} /* command */
|
||||
} /* icd_management */
|
||||
|
||||
Reference in New Issue
Block a user