Enable auto erase for flash memory while uploading

This commit is contained in:
Ivan Kravets
2015-06-01 17:26:17 +03:00
parent 61b2bd6cb8
commit 04b2f94478
2 changed files with 1 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 0, "3.dev1")
VERSION = (2, 0, "3.dev2")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -78,7 +78,6 @@ else:
UPLOADER=join("$PIOPACKAGES_DIR", "tool-avrdude", "avrdude"),
UPLOADERFLAGS=[
"-v",
"-D", # disable auto erase for flash memory
"-p", "$BOARD_MCU",
"-C",
'"%s"' % join("$PIOPACKAGES_DIR", "tool-avrdude", "avrdude.conf"),