-
-
Notifications
You must be signed in to change notification settings - Fork 346
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
Add hardware configuration option support #2266
Conversation
{ | ||
"vdd": { | ||
"description": "Modify PHY configuration to support `system_get_vdd33()` function", | ||
"partitions": { | ||
"phy_init": { | ||
"filename": "$(FLASH_INIT_DATA_VCC)" | ||
} | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@slaff Here's the glue for the 'vdd' option, just needs your code to implement FLASH_INIT_DATA_VCC
495fee3
to
3fd7227
Compare
Allow options to be set using `HWCONFIG_OPTS` or in configuration Show HWCONFIG setting with options when showing partition map
3fd7227
to
a65c359
Compare
@mikee47 Thank you and I like a lot the elegancy and flexibility of the hardware options! |
@mikee47 I am having problems using the
and in both places I get the following error:
My wild guess is that merging of core opts with arch opts is not working. Another related issue: The command below also does not work as expected:
I get the following error:
|
This PR aims to simplify use of hardware configurations via option settings. This allows common bits of configuration to be pulled in by name.
See #1712 (comment)