vex-sdk 0.28.0

FFI bindings to VEXos system APIs.
Documentation
//! Smart Port Generic Serial Communication

use crate::V5_DeviceT;

unsafe extern "system" {
    pub fn vexDeviceGenericSerialEnable(device: V5_DeviceT, options: i32);
    pub fn vexDeviceGenericSerialBaudrate(device: V5_DeviceT, baudrate: i32);
    pub fn vexDeviceGenericSerialWriteChar(device: V5_DeviceT, c: u8) -> i32;
    pub fn vexDeviceGenericSerialWriteFree(device: V5_DeviceT) -> i32;
    pub fn vexDeviceGenericSerialTransmit(
        device: V5_DeviceT,
        buffer: *const u8,
        length: i32,
    ) -> i32;
    pub fn vexDeviceGenericSerialReadChar(device: V5_DeviceT) -> i32;
    pub fn vexDeviceGenericSerialPeekChar(device: V5_DeviceT) -> i32;
    pub fn vexDeviceGenericSerialReceiveAvail(device: V5_DeviceT) -> i32;
    pub fn vexDeviceGenericSerialReceive(device: V5_DeviceT, buffer: *mut u8, length: i32) -> i32;
    pub fn vexDeviceGenericSerialFlush(device: V5_DeviceT);
}