Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Commit 7b3627d

Browse files
authored
Fix invalid c syntax in key source display (#290)
Add missing comma key display source code generation (NCP-2834)
1 parent 5b2ebd5 commit 7b3627d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nordicsemi/dfu/signing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def get_vk_code(self, dbg):
233233
/** @brief Public key used to verify DFU images */
234234
__ALIGN(4) const uint8_t pk[64] =
235235
{{
236-
{0}
236+
{0},
237237
{1}
238238
}};
239239
"""

0 commit comments

Comments
 (0)