diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-15 13:48:53 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-04-15 14:01:22 +0300 |
commit | b122ed07326b9f0109b2d596aa094788488edd0d (patch) | |
tree | c3d7f4c33ac90ff739285bb5d136ba706aba8807 | |
parent | c3beb16db33e941021ff839a2fa9c806c134aa48 (diff) | |
download | micropython-b122ed07326b9f0109b2d596aa094788488edd0d.tar.gz micropython-b122ed07326b9f0109b2d596aa094788488edd0d.zip |
docs/esp: Enumerate flash access functions.
-rw-r--r-- | docs/library/esp.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/library/esp.rst b/docs/library/esp.rst index 040d62f769..34d3c278d9 100644 --- a/docs/library/esp.rst +++ b/docs/library/esp.rst @@ -39,3 +39,9 @@ Functions .. function:: flash_id() Read the device ID of the flash memory. + +.. function:: flash_read(byte_offset, length_or_buffer) + +.. function:: flash_write(byte_offset, bytes) + +.. function:: flash_erase(sector_no) |