FSUIPC Rust library

This library provides the code needed to implement a FSUIPC client in Rust language.

Usage

FSUIPC library is based on the following two traits:

There are two different implementations for this pair of traits.

Let's see some examples:

```Rust // First we create both handle & session using a local IPC. let mut fsuipc = try!(fsuipc::local::LocalHandle::new()); let mut session = fsuipc.session();

// This variable will be use to store the result of reading the altitude let mut altitude: u32 = 0;

// This is the value of QNH that we are gonna write to FSUIPC let qnh: u16 = 1020 * 16;

// We request to read from offset 0x3324 and save the result in altitude. // The length of the offset to read is inferred from the variable type // (altitude is u32, so 4 bytes are requested). try!(session.read(0x3324, &mut altitude));

// We request to write to offset 0x0330 from the contents of qnh. // The length of the offset to write is inferred from the variable type // (qnh is u16, so 2 bytes are requested). try!(session.write(0x0330, &qnh));

// Now all the requests are processed. After that, altitude will receive // the value read from FSUIPC, and offset 0x0330 will be updated with the // value of qnh. This call consumes the session object. For further // reads and writes, another session must be created. try!(session.process()); ```

The code for user mode is almost the same. Just change the way the handle is instantiated:

Rust let mut fsuipc = try!(fsuipc::user::UserHandle::new());

The rest of the code would work for user mode as well.

You may also have a look to the Hello World example.

Known limitations

License

This code is published under Mozilla Public License v2 terms.