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

Commit

Permalink
Fix invalid c syntax in key source display (#290)
Browse files Browse the repository at this point in the history
Add missing comma key display source code generation (NCP-2834)
  • Loading branch information
bihanssen authored Dec 20, 2019
1 parent 5b2ebd5 commit 7b3627d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nordicsemi/dfu/signing.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def get_vk_code(self, dbg):
/** @brief Public key used to verify DFU images */
__ALIGN(4) const uint8_t pk[64] =
{{
{0}
{0},
{1}
}};
"""
Expand Down

0 comments on commit 7b3627d

Please sign in to comment.