mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
components/esp_matter: Remove inconsistencies in the namespaces
This commit is contained in:
@@ -103,15 +103,15 @@ using config_t = common::config_t;
|
||||
cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags);
|
||||
} /* binding */
|
||||
|
||||
namespace ota_provider {
|
||||
namespace ota_software_update_provider {
|
||||
typedef struct config {
|
||||
void *delegate;
|
||||
config() : delegate(nullptr) {}
|
||||
} config_t;
|
||||
cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags);
|
||||
} /* ota_provider */
|
||||
} /* ota_software_update_provider */
|
||||
|
||||
namespace ota_requestor {
|
||||
namespace ota_software_update_requestor {
|
||||
typedef struct config {
|
||||
bool update_possible;
|
||||
uint8_t update_state;
|
||||
@@ -120,7 +120,7 @@ typedef struct config {
|
||||
} config_t;
|
||||
|
||||
cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags);
|
||||
} /* ota_requestor */
|
||||
} /* ota_software_update_requestor */
|
||||
|
||||
namespace general_commissioning {
|
||||
typedef struct config {
|
||||
|
||||
Reference in New Issue
Block a user