openthread_fuchsia/
binding.rs1use openthread::prelude::*;
6
7#[repr(C)]
8#[derive(Debug, Copy, Clone)]
9pub struct otPlatformConfig {
10 pub reset_rcp: bool,
11}
12
13#[repr(C)]
14#[derive(Debug, Copy, Clone)]
15pub struct OtSysMainloopContext {
16 pub placeholder: u32,
17}
18
19extern "C" {
20 pub fn otSysInit(a_platform_config: *mut otPlatformConfig) -> bool;
21 pub fn otSysDeinit();
22 pub fn platformRadioProcess(
23 instance: *mut otsys::otInstance,
24 context: *const OtSysMainloopContext,
25 );
26 pub fn platformSpinelManagerProcess(
27 instance: *mut otsys::otInstance,
28 context: *const OtSysMainloopContext,
29 );
30 pub fn platformInfraIfInit(infra_if_idx: ot::NetifIndex) -> i32;
31 pub fn platformInfraIfOnReceiveIcmp6Msg(instance: *mut otsys::otInstance);
32}