mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Fix an issue when can not upload firmware to SAM-BA based board (Due)
This commit is contained in:
@ -15,9 +15,10 @@ PlatformIO 3.0
|
||||
`library.json <http://docs.platformio.org/page/librarymanager/config.html>`__
|
||||
and ``srcFilter`` field
|
||||
* Do not ask for board ID when initialize project for desktop platform
|
||||
* Fixed issue when can not load broken PIO Core state
|
||||
* Handle broken PIO Core state and create new one
|
||||
* Fixed an issue with a custom transport for `PIO Unit Testing <http://docs.platformio.org/page/plus/unit-testing.html>`__
|
||||
when multiple tests are present
|
||||
* Fixed an issue when can not upload firmware to SAM-BA based board (Due)
|
||||
|
||||
3.4.0 (2017-06-26)
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
@ -48,7 +48,7 @@ def TouchSerialPort(env, port, baudrate):
|
||||
s.close()
|
||||
except: # pylint: disable=W0702
|
||||
pass
|
||||
sleep(0.4)
|
||||
sleep(0.4) # DO NOT REMOVE THAT (required by SAM-BA based boards)
|
||||
|
||||
|
||||
def WaitForNewSerialPort(env, before):
|
||||
|
Reference in New Issue
Block a user