We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
:x
#[derive(defmt::Format)] struct Foo { bar: [u8; 4], } info!("Arr: {:x}", [10, 11, 12, 13]); info!("Foo: {:x}", Foo { bar: [10, 11, 12, 13] });
This code prints:
25 INFO Arr: [a, b, c, d] 26 INFO Foo: Foo { bar: [10, 11, 12, 13] }
I would expect the struct's array to be printed in hex as well. I think this used to work in the past, but maybe I'm mistaken? (using defmt 0.3.0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This code prints:
I would expect the struct's array to be printed in hex as well. I think this used to work in the past, but maybe I'm mistaken? (using defmt 0.3.0)
The text was updated successfully, but these errors were encountered: