Brief Description
The examples currently use the language-specific printing mechanisms which rely on the standard library. These should be replaced with an alternative that allows them to be compiled and run in no_std
contexts.
Potential solutions:
- Add own printing abstraction to
iceoryx2-bb
that can be implemented for the target platform
- Use
writeln!
and core::fmt::Write
which can be implemented for the target platform