1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
//! Blocking I2C API //! //! This API supports 7-bit and 10-bit addresses. Traits feature an `AddressMode` //! marker type parameter. Two implementation of the `AddressMode` exist: //! `SevenBitAddress` and `TenBitAddress`. //! //! Through this marker types it is possible to implement each address mode for //! the traits independently in `embedded-hal` implementations and device drivers //! can depend only on the mode that they support. //! //! Additionally, the I2C 10-bit address mode has been developed to be fully //! backwards compatible with the 7-bit address mode. This allows for a //! software-emulated 10-bit addressing implementation if the address mode //! is not supported by the hardware. //! //! Since 7-bit addressing is the mode of the majority of I2C devices, //! `SevenBitAddress` has been set as default mode and thus can be omitted if desired. //! //! ## Examples //! //! ### `embedded-hal` implementation for an MCU //! Here is an example of an embedded-hal implementation of the `Write` trait //! for both modes: //! ``` //! # use embedded_hal::blocking::i2c::{SevenBitAddress, TenBitAddress, Write}; //! /// I2C0 hardware peripheral which supports both 7-bit and 10-bit addressing. //! pub struct I2c0; //! //! impl Write<SevenBitAddress> for I2c0 //! { //! # type Error = (); //! # //! fn try_write(&mut self, addr: u8, output: &[u8]) -> Result<(), Self::Error> { //! // ... //! # Ok(()) //! } //! } //! //! impl Write<TenBitAddress> for I2c0 //! { //! # type Error = (); //! # //! fn try_write(&mut self, addr: u16, output: &[u8]) -> Result<(), Self::Error> { //! // ... //! # Ok(()) //! } //! } //! ``` //! //! ### Device driver compatible only with 7-bit addresses //! //! For demonstration purposes the address mode parameter has been omitted in this example. //! //! ``` //! # use embedded_hal::blocking::i2c::WriteRead; //! const ADDR: u8 = 0x15; //! # const TEMP_REGISTER: u8 = 0x1; //! pub struct TemperatureSensorDriver<I2C> { //! i2c: I2C, //! } //! //! impl<I2C, E> TemperatureSensorDriver<I2C> //! where //! I2C: WriteRead<Error = E>, //! { //! pub fn read_temperature(&mut self) -> Result<u8, E> { //! let mut temp = [0]; //! self.i2c //! .try_write_read(ADDR, &[TEMP_REGISTER], &mut temp) //! .and(Ok(temp[0])) //! } //! } //! ``` //! //! ### Device driver compatible only with 10-bit addresses //! //! ``` //! # use embedded_hal::blocking::i2c::{TenBitAddress, WriteRead}; //! const ADDR: u16 = 0x158; //! # const TEMP_REGISTER: u8 = 0x1; //! pub struct TemperatureSensorDriver<I2C> { //! i2c: I2C, //! } //! //! impl<I2C, E> TemperatureSensorDriver<I2C> //! where //! I2C: WriteRead<TenBitAddress, Error = E>, //! { //! pub fn read_temperature(&mut self) -> Result<u8, E> { //! let mut temp = [0]; //! self.i2c //! .try_write_read(ADDR, &[TEMP_REGISTER], &mut temp) //! .and(Ok(temp[0])) //! } //! } //! ``` use crate::private; /// Address mode (7-bit / 10-bit) /// /// Note: This trait is sealed and should not be implemented outside of this crate. pub trait AddressMode: private::Sealed {} /// 7-bit address mode type pub type SevenBitAddress = u8; /// 10-bit address mode type pub type TenBitAddress = u16; impl AddressMode for SevenBitAddress {} impl AddressMode for TenBitAddress {} /// Blocking read pub trait Read<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Reads enough bytes from slave with `address` to fill `buffer` /// /// # I2C Events (contract) /// /// ``` text /// Master: ST SAD+R MAK MAK ... NMAK SP /// Slave: SAK B0 B1 ... BN /// ``` /// /// Where /// /// - `ST` = start condition /// - `SAD+R` = slave address followed by bit 1 to indicate reading /// - `SAK` = slave acknowledge /// - `Bi` = ith byte of data /// - `MAK` = master acknowledge /// - `NMAK` = master no acknowledge /// - `SP` = stop condition fn try_read(&mut self, address: A, buffer: &mut [u8]) -> Result<(), Self::Error>; } /// Blocking write pub trait Write<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Sends bytes to slave with address `address` /// /// # I2C Events (contract) /// /// ``` text /// Master: ST SAD+W B0 B1 ... BN SP /// Slave: SAK SAK SAK ... SAK /// ``` /// /// Where /// /// - `ST` = start condition /// - `SAD+W` = slave address followed by bit 0 to indicate writing /// - `SAK` = slave acknowledge /// - `Bi` = ith byte of data /// - `SP` = stop condition fn try_write(&mut self, address: A, bytes: &[u8]) -> Result<(), Self::Error>; } /// Blocking write (iterator version) pub trait WriteIter<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Sends bytes to slave with address `address` /// /// # I2C Events (contract) /// /// Same as `Write` fn try_write_iter<B>(&mut self, address: A, bytes: B) -> Result<(), Self::Error> where B: IntoIterator<Item = u8>; } /// Blocking write + read pub trait WriteRead<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Sends bytes to slave with address `address` and then reads enough bytes to fill `buffer` *in a /// single transaction* /// /// # I2C Events (contract) /// /// ``` text /// Master: ST SAD+W O0 O1 ... OM SR SAD+R MAK MAK ... NMAK SP /// Slave: SAK SAK SAK ... SAK SAK I0 I1 ... IN /// ``` /// /// Where /// /// - `ST` = start condition /// - `SAD+W` = slave address followed by bit 0 to indicate writing /// - `SAK` = slave acknowledge /// - `Oi` = ith outgoing byte of data /// - `SR` = repeated start condition /// - `SAD+R` = slave address followed by bit 1 to indicate reading /// - `Ii` = ith incoming byte of data /// - `MAK` = master acknowledge /// - `NMAK` = master no acknowledge /// - `SP` = stop condition fn try_write_read( &mut self, address: A, bytes: &[u8], buffer: &mut [u8], ) -> Result<(), Self::Error>; } /// Blocking write (iterator version) + read pub trait WriteIterRead<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Sends bytes to slave with address `address` and then reads enough bytes to fill `buffer` *in a /// single transaction* /// /// # I2C Events (contract) /// /// Same as the `WriteRead` trait fn try_write_iter_read<B>( &mut self, address: A, bytes: B, buffer: &mut [u8], ) -> Result<(), Self::Error> where B: IntoIterator<Item = u8>; } /// Transactional I2C operation. /// /// Several operations can be combined as part of a transaction. #[derive(Debug, PartialEq)] pub enum Operation<'a> { /// Read data into the provided buffer Read(&'a mut [u8]), /// Write data from the provided buffer Write(&'a [u8]), } /// Transactional I2C interface. /// /// This allows combining operations within an I2C transaction. pub trait Transactional<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Execute the provided operations on the I2C bus. /// /// Transaction contract: /// - Before executing the first operation an ST is sent automatically. This is followed by SAD+R/W as appropriate. /// - Data from adjacent operations of the same type are sent after each other without an SP or SR. /// - Between adjacent operations of a different type an SR and SAD+R/W is sent. /// - After executing the last operation an SP is sent automatically. /// - If the last operation is a `Read` the master does not send an acknowledge for the last byte. /// /// - `ST` = start condition /// - `SAD+R/W` = slave address followed by bit 1 to indicate reading or 0 to indicate writing /// - `SR` = repeated start condition /// - `SP` = stop condition fn try_exec<'a>( &mut self, address: A, operations: &mut [Operation<'a>], ) -> Result<(), Self::Error>; } /// Transactional I2C interface (iterator version). /// /// This allows combining operation within an I2C transaction. pub trait TransactionalIter<A: AddressMode = SevenBitAddress> { /// Error type type Error; /// Execute the provided operations on the I2C bus (iterator version). /// /// Transaction contract: /// - Before executing the first operation an ST is sent automatically. This is followed by SAD+R/W as appropriate. /// - Data from adjacent operations of the same type are sent after each other without an SP or SR. /// - Between adjacent operations of a different type an SR and SAD+R/W is sent. /// - After executing the last operation an SP is sent automatically. /// - If the last operation is a `Read` the master does not send an acknowledge for the last byte. /// /// - `ST` = start condition /// - `SAD+R/W` = slave address followed by bit 1 to indicate reading or 0 to indicate writing /// - `SR` = repeated start condition /// - `SP` = stop condition fn try_exec_iter<'a, O>(&mut self, address: A, operations: O) -> Result<(), Self::Error> where O: IntoIterator<Item = Operation<'a>>; } /// Default implementation of `blocking::i2c::Write`, `blocking::i2c::Read` and /// `blocking::i2c::WriteRead` traits for `blocking::i2c::Transactional` implementers. /// /// If you implement `blocking::i2c::Transactional` for your I2C peripheral, /// you can use this default implementation so that you do not need to implement /// the `blocking::i2c::Write`, `blocking::i2c::Read` and `blocking::i2c::WriteRead` /// traits as well. /// ``` /// use embedded_hal::blocking::i2c; /// /// struct I2c1; /// /// impl i2c::Transactional<i2c::SevenBitAddress> for I2c1 { /// # type Error = (); /// fn try_exec<'a>( /// &mut self, /// address: i2c::SevenBitAddress, /// operations: &mut [i2c::Operation<'a>], /// ) -> Result<(), Self::Error> { /// // ... /// # Ok(()) /// } /// } /// /// // This is all you need to do: /// impl i2c::transactional::Default<i2c::SevenBitAddress> for I2c1 {}; /// /// // Then you can use `Write` and so on: /// use i2c::Write; /// /// let mut i2c1 = I2c1{}; /// i2c1.try_write(0x01, &[0xAB, 0xCD]).unwrap(); /// ``` pub mod transactional { use super::{AddressMode, Operation, Read, Transactional, Write, WriteRead}; /// Default implementation of `blocking::i2c::Write`, `blocking::i2c::Read` and /// `blocking::i2c::WriteRead` traits for `blocking::i2c::Transactional` implementers. pub trait Default<A: AddressMode>: Transactional<A> {} impl<A, E, S> Write<A> for S where A: AddressMode, S: self::Default<A> + Transactional<A, Error = E>, { type Error = E; fn try_write(&mut self, address: A, bytes: &[u8]) -> Result<(), Self::Error> { self.try_exec(address, &mut [Operation::Write(bytes)]) } } impl<A, E, S> Read<A> for S where A: AddressMode, S: self::Default<A> + Transactional<A, Error = E>, { type Error = E; fn try_read(&mut self, address: A, buffer: &mut [u8]) -> Result<(), Self::Error> { self.try_exec(address, &mut [Operation::Read(buffer)]) } } impl<A, E, S> WriteRead<A> for S where A: AddressMode, S: self::Default<A> + Transactional<A, Error = E>, { type Error = E; fn try_write_read( &mut self, address: A, bytes: &[u8], buffer: &mut [u8], ) -> Result<(), Self::Error> { self.try_exec( address, &mut [Operation::Write(bytes), Operation::Read(buffer)], ) } } }