Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tools: Fix imports and add serial port arg for maintenance and updateSystemPakcage. #4

Merged
merged 2 commits into from
Mar 13, 2025

Conversation

iabdalkader
Copy link
Collaborator

No description provided.

@@ -139,7 +139,9 @@ def main():
parser = argparse.ArgumentParser(
description="NVM Burner for Application TOC Package"
)
parser.add_argument("-d", "--device", type=str, help="serial port device")
parser.add_argument(
"-p", "--port", type=str, help="Serial port device", required=True
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't work, it conflicts with the -p pad argument.

Because this option is required (options are usually optional!), maybe just make it a positional required argument? Same with maintenance.py and updateSystemPackage.py.

Copy link
Collaborator Author

@iabdalkader iabdalkader Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right I missed the -p for padding. We could just use --port or -P? I prefer explicit keyword args to positional args to match the other args style. Note -d is already commonly used for discover.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But if you always have to specify it, why not make it positional and then you don't have to type --port each time? It's pretty clean to write maintenance.py /dev/ttyUSB0.

I prefer explicit keyword args to positional args to match the other args style.

The other arguments are all optional. IMO it's more inconsistent to add a required option, rather than adding a positional argument.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But if you always have to specify it

You don't, it should have a default value like /dev/ttyACM0.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, it's just that you added required=True here 😂

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could use -P and --port. Or remove the shorthand -p from the pad option and reuse -p for port.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, updated. I wasn't sure if we should keep -p for tools that don't have it, so I just removed it from all tools.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could use -P and --port

No problem, I could revert that if you like.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's fine with just --port. This tool will anyway most likely be used from a makefile or script.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's get this merged and then focus on the db issue.

@iabdalkader iabdalkader force-pushed the fix_tools branch 2 times, most recently from dc40aec to fcbe1e6 Compare March 13, 2025 09:18
@iabdalkader
Copy link
Collaborator Author

For consistency, adding --port first, before --baudrate.

@iabdalkader iabdalkader force-pushed the fix_tools branch 2 times, most recently from 36ff066 to b7954ca Compare March 13, 2025 09:39
Signed-off-by: iabdalkader <[email protected]>
Add `--port` arg to `maintenance.py`, `updateSystemPackage.py`
and `app-write-mram.py`

Signed-off-by: iabdalkader <[email protected]>
@dpgeorge dpgeorge merged commit 0cd381a into out-of-tree Mar 13, 2025
2 checks passed
@dpgeorge dpgeorge deleted the fix_tools branch March 13, 2025 10:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants