You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I've tried copying the rp235x-hal-examples as a basis for a new project
But what I'm noticing is that the following macro's are not visible from rp-binary-info
rp_cargo_bin_name
rp_cargo_homepage_url
As far as the rp235x-hal-examples itself that's working fine as it's referencing the directory via a path statement
But as soon as you try and reference rp235x-hal or rp-binary-info directly without that path statement, the macros are not visible for some reason
# Replace this in rp235x-hal-examples/Cargo.toml
rp235x-hal = {path = "../rp235x-hal", version = "0.3.0", features = ["binary-info", "critical-section-impl", "rt", "defmt"]}
# With this
rp235x-hal = {version = "0.3.0", features = ["binary-info", "critical-section-impl", "rt", "defmt"]}
# Then run
cargo build --bin=blinky
The text was updated successfully, but these errors were encountered:
You are right: These functions were added to rp-binary-info after its 0.1.0 release.
So we should release rp-binary-info version 0.1.1 and depend on it from rp235x-hal-examples.
PR #911 prepares that release.
Hi,
I've tried copying the rp235x-hal-examples as a basis for a new project
But what I'm noticing is that the following macro's are not visible from rp-binary-info
As far as the rp235x-hal-examples itself that's working fine as it's referencing the directory via a path statement
But as soon as you try and reference rp235x-hal or rp-binary-info directly without that path statement, the macros are not visible for some reason
The text was updated successfully, but these errors were encountered: