nrf-802154-sys 0.1.0

Low level Rust bindings to the NRF 802.15.4 Radio Driver
Documentation
#![no_std]
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(non_snake_case)]
#![allow(dead_code)]

//! See [Nordic's documentation](https://docs.nordicsemi.com/bundle/ncs-latest/page/nrfxlib/nrf_802154/README.html) for usage and details.

mod bindings {
    #![allow(
        clippy::fn_to_numeric_cast,
        clippy::missing_safety_doc,
        clippy::redundant_static_lifetimes,
        clippy::too_many_arguments,
        clippy::useless_transmute,
        clippy::ptr_offset_with_cast,
        unused_parens
    )]

    // #[allow(unused_imports)]
    // use nrf_mpsl_sys::*;

    include!(concat!(env!("OUT_DIR"), "/bindings.rs"));
}

pub use bindings::*;