5个稳定版本
1.2.0 | 2024年4月30日 |
---|---|
1.1.0 | 2024年4月11日 |
1.0.2 | 2023年12月1日 |
1.0.0 | 2022年7月18日 |
#173 in 嵌入式开发
1,427 每月下载次数
7KB
96 行
format_no_std
实现
write_str
以获取write_fmt
,该功能用于format!()
和format_args!()
宏。用于裸金属环境中的no_std
格式化。
许可证
许可协议为以下之一
- Apache License, Version 2.0 (LICENSE-APACHE或https://apache.ac.cn/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT或https://open-source.org.cn/licenses/MIT)
任选其一。
贡献
除非您明确声明,否则任何有意提交以包含在作品中的贡献,根据Apache-2.0许可证定义,应按上述方式双重许可,无需任何附加条款或条件。
用法
库使用示例
let mut buf = [0u8; 64];
let s = format_no_std::show(
&mut buf,
format_args!("Test String {}: {}", "foo", 42),
).unwrap();
assert_eq!("Test String foo: 42", s);
lib.rs
:
实现write_str
以获取write_fmt
,该功能用于format!()
和format_args!()
宏。用于裸金属环境中的no_std
格式化。
此代码基于https://stackoverflow.com/questions/50200268/how-can-i-use-the-format-macro-in-a-no-std-environment
let mut buf = [0u8; 64];
let s = format_no_std::show(
&mut buf,
format_args!("Test String {}: {}", "foo", 42),
).unwrap();
assert_eq!("Test String foo: 42", s);