vex_sdk/
generic_radio.rs

1//! V5 Smart Radio
2
3use core::ffi::{c_char, c_int};
4
5use crate::{map_jump_table, V5_DeviceT};
6
7map_jump_table! {
8    0xaa4 => pub fn vexDeviceGenericRadioConnection(device: V5_DeviceT, link_id: *mut c_char, r#type: c_int, ov: bool),
9    0xaac => pub fn vexDeviceGenericRadioWriteFree(device: V5_DeviceT) -> i32,
10    0xab0 => pub fn vexDeviceGenericRadioTransmit(device: V5_DeviceT, data: *const u8, size: u16) -> i32,
11    0xabc => pub fn vexDeviceGenericRadioReceiveAvail(device: V5_DeviceT) -> i32,
12    0xac0 => pub fn vexDeviceGenericRadioReceive(device: V5_DeviceT, data: *mut u8, size: u16) -> i32,
13    0xac8 => pub fn vexDeviceGenericRadioLinkStatus(device: V5_DeviceT) -> bool,
14}