Add stop option to i2c.readfrom

Daniel Campora 2015-09-26 18:39:27 +02:00
parent 791eda0269
commit 1d1f95a923
1 changed files with 1 additions and 1 deletions

@ -180,7 +180,7 @@ Master mode:
Master mode transfers: Master mode transfers:
- `i2c.readfrom(addr, nbytes)` - `i2c.readfrom(addr, nbytes, *, stop=True)`
- `i2c.readfrom_into(addr, buf, *, stop=True)` NOHEAP; stop is if we want to send a stop bit at the end - `i2c.readfrom_into(addr, buf, *, stop=True)` NOHEAP; stop is if we want to send a stop bit at the end
- `i2c.writeto(addr, buf, *, stop=True)` NOHEAP; stop is if we want to send a stop bit at the end - `i2c.writeto(addr, buf, *, stop=True)` NOHEAP; stop is if we want to send a stop bit at the end