#svd2rust #api-access #ht32

no-std ht32f5xxxx

支持HT32F5XXXX设备的设备支持包

2个版本

0.1.1 2020年5月26日
0.1.0 2020年5月26日

#1785嵌入式开发

MIT/Apache

3MB
92K SLoC

这是我要找的crate吗?

请注意,Holtek有两种芯片命名规范,一种有4位,另一种有5位。为4位数生成的crate命名方案为HT32F1yyy,为5位数HT32F1xxxx。请确保这是你要找的crate。

ht32f5xxxx

此crate提供用于访问HT32F5XXXX外设的自动生成的API。API使用修复过的包含大量类型安全支持的svd文件通过svd2rust生成。有关更多信息,请参阅主仓库

请参阅文档以获取详细信息。

用法

此crate支持的每个设备都有一个功能门,这样你只编译你想要的设备。要使用,在Cargo.toml中

[dependencies.ht32f5xxxx]
version = "0.1.0"
features = ["ht32f50220_30", "rt"]

rt 功能是可选的,它引入了对 cortex-m-rt 的支持。

在你的代码中

use ht32f5xxxx::ht32f50220_30;

let mut peripherals = ht32f50220_30::Peripherals::take().unwrap();
let gpioa = &peripherals.GPIOA;
gpioa.odr.modify(|_, w| w.odr0().set_bit());

有关自动生成的API的详细信息,请参阅:https://docs.rs/svd2rust/0.17.0/svd2rust/#peripheral-api

支持的设备

模块 设备 链接
ht32f50220_30 待办事项 待办事项st.com
ht32f50231_41 待办事项 待办事项st.com
ht32f50343 待办事项 待办事项st.com
ht32f52142 待办事项 待办事项st.com
ht32f52220_30 待办事项 待办事项st.com
ht32f52231_41 待办事项 待办事项st.com
ht32f52243_53 待办事项 待办事项st.com
ht32f52331_41 待办事项 待办事项st.com
ht32f52342_52 待办事项 待办事项st.com
ht32f52344_54 待办事项 待办事项st.com
ht32f52357_67 待办事项 待办事项st.com
ht32f57331_41 待办事项 待办事项st.com
ht32f57342_52 待办事项 待办事项st.com
ht32f59041 待办事项 待办事项st.com
ht32f59741 待办事项 待办事项st.com

依赖关系

~0.8–1.1MB
~18K SLoC