artiq/artiq/firmware/libboard_artiq/lib.rs

32 lines
503 B
Rust
Raw Normal View History

2021-08-25 15:22:19 +08:00
#![feature(lang_items, never_type)]
#![no_std]
2018-05-16 00:35:05 +08:00
extern crate failure;
#[cfg(has_drtio)]
#[macro_use]
extern crate failure_derive;
extern crate byteorder;
extern crate crc;
#[macro_use]
extern crate log;
extern crate io;
extern crate board_misoc;
extern crate proto_artiq;
pub mod spi;
#[cfg(has_kernel_cpu)]
pub mod mailbox;
#[cfg(has_kernel_cpu)]
pub mod rpc_queue;
#[cfg(has_si5324)]
pub mod si5324;
2018-05-29 10:26:36 +08:00
#[cfg(has_grabber)]
pub mod grabber;
#[cfg(has_drtio)]
pub mod drtioaux;
2018-09-09 21:49:28 +08:00
pub mod drtio_routing;