2014-06-07 13:34:31 +03:00
|
|
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
|
|
|
|
# See LICENSE for details.
|
|
|
|
|
|
|
|
|
|
from os.path import join
|
|
|
|
|
|
2014-07-30 22:40:11 +03:00
|
|
|
from platformio.platforms.base import BasePlatform
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class AtmelavrPlatform(BasePlatform):
|
2014-06-12 23:29:47 +03:00
|
|
|
"""
|
|
|
|
|
An embedded platform for Atmel AVR microcontrollers
|
|
|
|
|
(with Arduino Framework)
|
|
|
|
|
"""
|
2014-06-07 13:34:31 +03:00
|
|
|
|
|
|
|
|
PACKAGES = {
|
|
|
|
|
|
|
|
|
|
"toolchain-atmelavr": {
|
|
|
|
|
"path": join("tools", "toolchain"),
|
|
|
|
|
"default": True
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"tool-avrdude": {
|
|
|
|
|
"path": join("tools", "avrdude"),
|
|
|
|
|
"default": True,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
"framework-arduinoavr": {
|
|
|
|
|
"path": join("frameworks", "arduino"),
|
2014-06-14 12:35:37 +03:00
|
|
|
"default": True
|
2014-06-07 13:34:31 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def get_name(self):
|
|
|
|
|
return "atmelavr"
|
|
|
|
|
|
|
|
|
|
def after_run(self, result):
|
|
|
|
|
# fix STDERR "flash written" for avrdude
|
|
|
|
|
if "flash written" in result['err']:
|
|
|
|
|
result['out'] += "\n" + result['err']
|
|
|
|
|
result['err'] = ""
|
|
|
|
|
return result
|