@@ -2315,9 +2315,9 @@ - (instancetype)initWithEndpointID:(NSNumber * _Nullable)endpointID
2315
2315
2316
2316
- (NSString *)description
2317
2317
{
2318
- return [NSString stringWithFormat: @" <MTRAttributeRequestPath endpoint %u cluster %u attribute %u >" ,
2319
- ( uint16_t ) _endpoint.unsignedShortValue, ( uint32_t ) _cluster.unsignedLongValue ,
2320
- ( uint32_t ) _attribute.unsignedLongValue ];
2318
+ return [NSString stringWithFormat: @" <MTRAttributeRequestPath endpoint %u cluster 0x %llx ( %llu ) attribute 0x %llx ( %llu ) >" ,
2319
+ _endpoint.unsignedShortValue, _cluster.unsignedLongLongValue, _cluster.unsignedLongLongValue ,
2320
+ _attribute.unsignedLongLongValue, _attribute.unsignedLongLongValue ];
2321
2321
}
2322
2322
2323
2323
+ (MTRAttributeRequestPath *)requestPathWithEndpointID : (NSNumber * _Nullable)endpointID
@@ -2439,9 +2439,9 @@ - (instancetype)initWithEndpointID:(NSNumber * _Nullable)endpointID
2439
2439
2440
2440
- (NSString *)description
2441
2441
{
2442
- return [NSString stringWithFormat: @" <MTREventRequestPath endpoint %u cluster %u event %u >" ,
2443
- ( uint16_t ) _endpoint.unsignedShortValue, ( uint32_t ) _cluster.unsignedLongValue ,
2444
- ( uint32_t ) _event.unsignedLongValue ];
2442
+ return [NSString stringWithFormat: @" <MTREventRequestPath endpoint %u cluster 0x %llx ( %llu ) event 0x %llx ( %llu ) >" ,
2443
+ _endpoint.unsignedShortValue, _cluster.unsignedLongLongValue, _cluster.unsignedLongLongValue ,
2444
+ _event.unsignedLongLongValue, _event.unsignedLongLongValue ];
2445
2445
}
2446
2446
2447
2447
+ (MTREventRequestPath *)requestPathWithEndpointID : (NSNumber * _Nullable)endpointID
@@ -2561,8 +2561,8 @@ - (instancetype)initWithPath:(const ConcreteClusterPath &)path
2561
2561
2562
2562
- (NSString *)description
2563
2563
{
2564
- return [NSString stringWithFormat: @" <MTRClusterPath endpoint %u cluster %u > " , ( uint16_t ) _endpoint.unsignedShortValue,
2565
- ( uint32_t ) _cluster.unsignedLongValue ];
2564
+ return [NSString stringWithFormat: @" <MTRClusterPath endpoint %u cluster 0x %llx ( %llu )> " , _endpoint.unsignedShortValue,
2565
+ _cluster.unsignedLongLongValue, _cluster.unsignedLongLongValue ];
2566
2566
}
2567
2567
2568
2568
+ (MTRClusterPath *)clusterPathWithEndpointID : (NSNumber *)endpointID clusterID : (NSNumber *)clusterID
@@ -2646,9 +2646,9 @@ - (instancetype)initWithPath:(const ConcreteDataAttributePath &)path
2646
2646
2647
2647
- (NSString *)description
2648
2648
{
2649
- return [NSString stringWithFormat: @" <MTRAttributePath endpoint %u cluster %u attribute %u >" ,
2650
- ( uint16_t ) self .endpoint.unsignedShortValue, ( uint32_t ) self .cluster.unsignedLongValue ,
2651
- ( uint32_t ) _attribute.unsignedLongValue ];
2649
+ return [NSString stringWithFormat: @" <MTRAttributePath endpoint %u cluster 0x %llx ( %llu ) attribute 0x %llx ( %llu ) >" ,
2650
+ self .endpoint.unsignedShortValue, self .cluster.unsignedLongLongValue, self .cluster.unsignedLongLongValue ,
2651
+ _attribute.unsignedLongLongValue, _attribute.unsignedLongLongValue ];
2652
2652
}
2653
2653
2654
2654
+ (MTRAttributePath *)attributePathWithEndpointID : (NSNumber *)endpointID
@@ -2743,8 +2743,8 @@ - (instancetype)initWithPath:(const ConcreteEventPath &)path
2743
2743
- (NSString *)description
2744
2744
{
2745
2745
return
2746
- [NSString stringWithFormat: @" <MTREventPath endpoint %u cluster %u event %u > " , ( uint16_t ) self .endpoint.unsignedShortValue,
2747
- ( uint32_t ) self .cluster.unsignedLongValue, ( uint32_t ) _event.unsignedLongValue ];
2746
+ [NSString stringWithFormat: @" <MTREventPath endpoint %u cluster 0x %llx ( %llu ) event 0x %llx ( %llu )> " , self .endpoint.unsignedShortValue,
2747
+ self .cluster.unsignedLongLongValue, self .cluster.unsignedLongLongValue, _event.unsignedLongLongValue, _event.unsignedLongLongValue ];
2748
2748
}
2749
2749
2750
2750
+ (MTREventPath *)eventPathWithEndpointID : (NSNumber *)endpointID clusterID : (NSNumber *)clusterID eventID : (NSNumber *)eventID
@@ -2833,8 +2833,9 @@ - (instancetype)initWithPath:(const ConcreteCommandPath &)path
2833
2833
- (NSString *)description
2834
2834
{
2835
2835
return
2836
- [NSString stringWithFormat: @" <MTRCommandPath endpoint %u cluster %lu command %lu >" , self .endpoint.unsignedShortValue,
2837
- self .cluster.unsignedLongValue, _command.unsignedLongValue];
2836
+ [NSString stringWithFormat: @" <MTRCommandPath endpoint %u cluster 0x%llx (%llu ) command 0x%llx (%llu )>" , self .endpoint.unsignedShortValue,
2837
+ self .cluster.unsignedLongLongValue, self .cluster.unsignedLongLongValue, _command.unsignedLongLongValue,
2838
+ _command.unsignedLongLongValue];
2838
2839
}
2839
2840
2840
2841
+ (MTRCommandPath *)commandPathWithEndpointID : (NSNumber *)endpointID clusterID : (NSNumber *)clusterID commandID : (NSNumber *)commandID
0 commit comments