Skip to content

Commit 655d134

Browse files
author
rgoliver
authored
Rpc: Make GetSerialNumber optional (project-chip#24851)
GetSerialNumber previously returned an error if not provided, this is optional in the spec and should just not return the value if it is not available.
1 parent 7275915 commit 655d134

File tree

1 file changed

+1
-1
lines changed
  • examples/common/pigweed/rpc_services

1 file changed

+1
-1
lines changed

examples/common/pigweed/rpc_services/Device.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class Device : public pw_rpc::nanopb::Device::Service<Device>
372372
if (DeviceLayer::GetDeviceInstanceInfoProvider()->GetSerialNumber(response.serial_number, sizeof(response.serial_number)) !=
373373
CHIP_NO_ERROR)
374374
{
375-
return pw::Status::Internal();
375+
response.serial_number[0] = '\0'; // optional serial field not set.
376376
}
377377

378378
// Create buffer for QR code that can fit max size and null terminator.

0 commit comments

Comments
 (0)