diff --git a/src/lib.rs b/src/lib.rs index bad749e..a2b879b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,11 +4,17 @@ //! [`embedded-hal`]: https://github.com/rust-embedded/embedded-hal //! //! This driver allows you to: -//! - Read a single byte from a memory address: `read_byte` -//! - Read a byte array starting on a memory address: `read_data` -//! - Read the current memory address (please read notes): `read_current_address` -//! - Write a byte to a memory address: `write_byte` -//! - Write a byte array (up to a memory page) to a memory address: `write_page` +//! - Read a single byte from a memory address. See [`read_byte()`]. +//! - Read a byte array starting on a memory address. See: [`read_data()`]. +//! - Read the current memory address (please read notes). See: [`read_current_address()`]. +//! - Write a byte to a memory address. See: [`write_byte()`]. +//! - Write a byte array (up to a memory page) to a memory address. See: [`write_page()`]. +//! +//! [`read_byte()`]: struct.Eeprom24x.html#method.read_byte +//! [`read_data()`]: struct.Eeprom24x.html#method.read_data +//! [`read_current_address()`]: struct.Eeprom24x.html#method.read_current_address +//! [`write_byte()`]: struct.Eeprom24x.html#method.write_byte +//! [`write_page()`]: struct.Eeprom24x.html#method.write_page //! //! Can be used at least with the devices listed below. //!