Skip to content

Commit 79730ab

Browse files
committed
feat: Add product ID to RPC info response and bump version to 0.5.7
1 parent 1c73f8c commit 79730ab

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

fw/components/borneo-core/src/rpc/common.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ int bo_rpc_borneo_info_get(const CborValue* args, CborEncoder* retvals)
4848
BO_TRY(cbor_encode_text_stringz(&root_map, sysinfo->name));
4949
}
5050

51+
{
52+
BO_TRY(cbor_encode_text_stringz(&root_map, "pid"));
53+
BO_TRY(cbor_encode_text_stringz(&root_map, CONFIG_BORNEO_PRODUCT_ID));
54+
}
55+
5156
{
5257
BO_TRY(cbor_encode_text_stringz(&root_map, "serno"));
5358
BO_TRY(cbor_encode_text_stringz(&root_map, sysinfo->hex_id));

fw/lyfi/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.6
1+
0.5.7

0 commit comments

Comments
 (0)