Documented uploading of EEPROM data

This commit is contained in:
Ivan Kravets
2016-07-05 12:34:37 +03:00
parent 63ae732e72
commit 9160e61ac7
2 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,8 @@ PlatformIO 2.0
2.11.1 (2016-??-??)
~~~~~~~~~~~~~~~~~~~
* Documented `uploading of EEPROM data <http://docs.platformio.org/en/latest/platforms/atmelavr.html#upload-eeprom-data>`__
(from EEMEM directive)
* Improved project generator for `CLion IDE <http://docs.platformio.org/en/latest/ide/clion.html>`__
* Auto-remove project cache when PlatformIO is upgraded
* Fixed missed ``--boot`` flag for the firmware uploader for ATSAM3X8E

View File

@ -95,6 +95,13 @@ Configuration for the programmers:
upload_port = SERIAL_PORT_HERE
upload_speed = 19200
Upload EEPROM data
------------------
To upload EEPROM data (from EEMEM directive) you need to use ``uploadeep``
target instead ``upload`` for :option:`platformio run --target` command.
For example, ``platformio run -t uploadeep``.
Articles
--------