@@ -577,32 +577,32 @@ void ContentAppFactoryImpl::InstallContentApp(uint16_t vendorId, uint16_t produc
577
577
ChipLogProgress (DeviceLayer, " ContentAppFactoryImpl: InstallContentApp vendorId=%d productId=%d " , vendorId, productId);
578
578
if (vendorId == 1 && productId == 11 )
579
579
{
580
- auto ptr = std::make_unique<ContentAppImpl>(" Vendor1" , vendorId, " exampleid" , productId, " Version1" ,
581
- " 34567890 " , make_default_supported_clusters ());
580
+ auto ptr = std::make_unique<ContentAppImpl>(" Vendor1" , vendorId, " exampleid" , productId, " Version1" , " 34567890 " ,
581
+ make_default_supported_clusters ());
582
582
mContentApps .emplace_back (std::move (ptr));
583
583
}
584
584
else if (vendorId == 65521 && productId == 32769 )
585
585
{
586
- auto ptr = std::make_unique<ContentAppImpl>(" Vendor2" , vendorId, " exampleString" , productId, " Version2" ,
587
- " 20202021 " , make_default_supported_clusters ());
586
+ auto ptr = std::make_unique<ContentAppImpl>(" Vendor2" , vendorId, " exampleString" , productId, " Version2" , " 20202021 " ,
587
+ make_default_supported_clusters ());
588
588
mContentApps .emplace_back (std::move (ptr));
589
589
}
590
590
else if (vendorId == 9050 && productId == 22 )
591
591
{
592
592
auto ptr = std::make_unique<ContentAppImpl>(" Vendor3" , vendorId, " App3" , productId, " Version3" , " 20202021" ,
593
- make_default_supported_clusters ());
593
+ make_default_supported_clusters ());
594
594
mContentApps .emplace_back (std::move (ptr));
595
595
}
596
596
else if (vendorId == 1111 && productId == 22 )
597
597
{
598
- auto ptr = std::make_unique<ContentAppImpl>(" TestSuiteVendor" , vendorId, " applicationId" , productId, " v2" ,
599
- " 20202021 " , make_default_supported_clusters ());
598
+ auto ptr = std::make_unique<ContentAppImpl>(" TestSuiteVendor" , vendorId, " applicationId" , productId, " v2" , " 20202021 " ,
599
+ make_default_supported_clusters ());
600
600
mContentApps .emplace_back (std::move (ptr));
601
601
}
602
602
else
603
603
{
604
- auto ptr = std::make_unique<ContentAppImpl>(" NewAppVendor" , vendorId, " newAppApplicationId" , productId, " v2" ,
605
- " 20202021 " , make_default_supported_clusters ());
604
+ auto ptr = std::make_unique<ContentAppImpl>(" NewAppVendor" , vendorId, " newAppApplicationId" , productId, " v2" , " 20202021 " ,
605
+ make_default_supported_clusters ());
606
606
mContentApps .emplace_back (std::move (ptr));
607
607
}
608
608
}
@@ -641,7 +641,8 @@ void ContentAppFactoryImpl::PrintInstalledApps()
641
641
{
642
642
auto app = contentApp.get ();
643
643
644
- ChipLogProgress (DeviceLayer, " Content app vid=%d pid=%d is on ep=%d" , app->GetApplicationBasicDelegate ()->HandleGetVendorId (),
644
+ ChipLogProgress (DeviceLayer, " Content app vid=%d pid=%d is on ep=%d" ,
645
+ app->GetApplicationBasicDelegate ()->HandleGetVendorId (),
645
646
app->GetApplicationBasicDelegate ()->HandleGetProductId (), app->GetEndpointId ());
646
647
}
647
648
}
0 commit comments