#interrupt #raspberry-pi #bare-metal #ruspiro

nightly no-std ruspiro-interrupt-core

Raspberry Pi全局启用/禁用中断的核心函数

3个不稳定版本

0.3.1 2020年9月11日
0.3.0 2019年12月11日
0.2.0 2019年8月27日

#19 in #raspberrypi

Apache-2.0

12KB
163

RusPiRo核心中断库

在Raspberry Pi上全局启用/禁用中断的核心函数。从ruspiro-interrupt中分离出来是为了防止循环依赖。

Travis-CI Status Latest Version Documentation License

使用方法

要使用这个库,只需将以下依赖项添加到您的Cargo.toml文件中

[dependencies]
ruspiro-interrupt-core = "0.3"

完成后,您可以在Rust文件中使用启用/禁用中断的函数,如下所示

use ruspiro_interrupt_core::*;

fn demo() {
    enable_interrupts();
    disable_interrupts();
    re_enable_interrupts();
}

许可证

遵循Apache License,版本2.0,(LICENSEhttp://www.apache.org/licenses/LICENSE-2.0)

无运行时依赖