drone-micropython-raw 0.1.1

Bindings to MicroPython.
//! Bindings to [MicroPython].
//!
//! [MicroPython]: https://micropython.org/

#![feature(const_fn)]
#![doc(html_root_url = "https://docs.rs/drone-micropython-raw/0.1.1")]
#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]
#![no_std]
#![cfg_attr(feature = "cargo-clippy", allow(clippy))]

extern crate drone_ctypes;

include!(concat!(env!("OUT_DIR"), "/bindings.rs"));