We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 819d40c commit 3f287f9Copy full SHA for 3f287f9
src/lib.rs
@@ -1,3 +1,13 @@
1
+//! Rust bindings to [avr-libc](http://www.nongnu.org/avr-libc/).
2
+//!
3
+//! When compiled with the avr-rust compiler, the libc bindings in this crate
4
+//! automatically pick up the right mcu-specific headers depending on what
5
+//! cpu is specified in the target specification file.
6
7
+//! This means that on different microcontrollers, this crate will have a different
8
+//! public API. In general, most functions are the same across all chips. Many
9
+//! constants however are device-specific.
10
+
11
#![no_std]
12
13
#![allow(non_camel_case_types, non_upper_case_globals)]
0 commit comments