refactor(printer): remove controller legacy and unify printer naming
This commit is contained in:
@@ -7,15 +7,15 @@
|
||||
static const char *TAG = "app_main";
|
||||
|
||||
esp_err_t app_composition_start(void) {
|
||||
return controller_lifecycle_start();
|
||||
return control_plane_lifecycle_start();
|
||||
}
|
||||
|
||||
void app_main(void) {
|
||||
esp_err_t rc = app_composition_start();
|
||||
if (rc != ESP_OK) {
|
||||
ESP_LOGE(TAG, "Controller lifecycle start failed: %s", esp_err_to_name(rc));
|
||||
ESP_LOGE(TAG, "control-plane lifecycle start failed: %s", esp_err_to_name(rc));
|
||||
return;
|
||||
}
|
||||
|
||||
ESP_LOGI(TAG, "TQ controller started");
|
||||
ESP_LOGI(TAG, "TQ printer runtime started");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user