Closed clebi closed 7 years ago
I haven't succeed write_fmt doesn't work what is not working it should be working.
You never once have said what it means to "work" or "not work", so I'm not sure how anyone could hope to help.
I have a feeling that this may be related to the fact we have a custom libcore with some function implementations commented out to appease the avr backend.
My first thought would be to check if anything obvious is commented out in the fmt module
On 24/11/2017 9:37 am, "Jake Goulding" notifications@github.com wrote:
I haven't succeed write_fmt doesn't work what is not working it should be working.
You never once have said what it means to "work" or "not work", so I'm not sure how anyone could hope to help.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/avr-rust/arduino/issues/6#issuecomment-346694498, or mute the thread https://github.com/notifications/unsubscribe-auth/AHXUr6PFJp2SO-kvvC3r8MCcbEUBd9Wvks5s5deKgaJpZM4QpJpH .
Good point. Probably a duplicate of avr-rust/libcore#3
OK, sorry.
I meant when I use write_str, it outputs the str I passed as parameter. But when using write_fmt, there is no output at all.
I hope this is more clear.
@clebi here's what's probably happening:
As part of avr-rust/libcore#3 we explicitly commented out the code that implements the formatting logic, ultimately because the LLVM infrastructure cannot handle it (avr-rust/rust#37). Someone needs to address the original LLVM issue before we can support any code that uses formatting.
Thank you for your answers. I close it since it is a known problem.
Thanks for filing this issue @clebi - this is a bit of a papercut.
I will add a "Caveats" section to the README so this is more obvious in the future. We can add to this list when we encounter more common problems.
The trimmed-down libcore isn't necessary anymore, right? So this should work now?
Hello,
I have tried to implement the Write trait for the Serial struct and I haven't succeed making the write_fmt work.
Both write_str and write_char works well and I can't seem to understand why the write_fmt doesn't work. I don't have many experience with rust so maybe you can figure out what is not working. I though since write_str is working well and as write_fmt is implemented in Write trait, it should be working.
Here is the simple implementation I did :
Thanks in advance