-
Notifications
You must be signed in to change notification settings - Fork 151
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
Unsupported proc macro punctuation character while rendering device from svd #863
Comments
Looks like issue with new
|
That solved it, thanks! |
While The change in proc-macro2 that triggered this issue was
These braces are clearly not punctuation characters but delimiters: So svd2rust should probably use |
Uses `proc_macro2::Group` for token streams delimited with braces. Resolves: rust-embedded#863
Uses `proc_macro2::Group` for token streams delimited with braces. Resolves: rust-embedded#863
Uses `proc_macro2::Group` for token streams delimited with braces. Resolves: rust-embedded#863
Uses `proc_macro2::Group` for token streams delimited with braces. Resolves: rust-embedded#863 Author: rmsyn <[email protected]> Co-author: Jan Niehusmann <[email protected]>
Uses `proc_macro2::Group` for token streams delimited with braces. Resolves: rust-embedded#863 Authored-by: rmsyn <[email protected]> Co-authored-by: Jan Niehusmann <[email protected]>
Due to a regression caused by proc-macro2 [1], we have to use a locked version of svd2rust to successfully build the code in this crate. Document this in the installation instructions. [1]: rust-embedded/svd2rust#863
Due to a regression caused by proc-macro2 [1], we have to use a locked version of svd2rust to successfully build the code in this crate. Document this in the installation instructions. [1]: rust-embedded/svd2rust#863
I've been trying to generate crates from svd for S32K3 processors, but svd2rust errors while rendering the device. Here is the command and output:
I'm new to rust, so I don't have much of an idea of how to troubleshoot, but I also tried a couple other SVD files and had the same error output:
S32K144.svd from s32k-rust/s32k144.rs (which was generated using svd2rust)
stm32f411.svd from tinygo-org/stm32-svd
svd2rust was installed using cargo and is version 0.33.4
The text was updated successfully, but these errors were encountered: