Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions targets/TARGET_Cypress/scripts/PSOC6.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,10 @@ def parse_args():
"--boot-scheme", help="the boot scheme."
)
sign_subcommand.add_argument(
"--cm0-img-id", help="the Cortex-M0 image ID."
"--cm0-img-id", type=int, help="the Cortex-M0 image ID."
)
sign_subcommand.add_argument(
"--cm4-img-id", help="the Cortex-M4 image ID."
"--cm4-img-id", type=int, help="the Cortex-M4 image ID."
)
sign_subcommand.add_argument(
"--elf", required=True, help="the application ELF file."
Expand Down