ni-fpga 1.4.1

Safe Rust interface to NI FPGAs with FXP support.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(const_evaluatable_checked)]
#![feature(const_generics)]
#![feature(maybe_uninit_uninit_array)]

extern crate ni_fpga_sys as ffi;

mod datatype;
mod errors;
pub mod fxp;
mod session;
mod status;

// Keep these for backwards compatibility, but don't use them internally
pub use datatype::{Datatype, FpgaBits};
pub use errors::Error;
pub type Offset = ffi::Offset;
pub use session::Session;
pub use status::Status;