Files
platformio-core/platformio/platforms/titiva.py

35 lines
742 B
Python
Raw Normal View History

# 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
class TitivaPlatform(BasePlatform):
"""
An embedded platform for TI TIVA C ARM microcontrollers
(with Energia Framework)
"""
PACKAGES = {
2014-06-11 21:31:36 +03:00
"toolchain-gccarmnoneeabi": {
"path": join("tools", "toolchain"),
"default": True
},
"tool-lm4flash": {
"path": join("tools", "lm4flash"),
"default": True,
},
"framework-energiativa": {
"path": join("frameworks", "energia"),
2014-06-11 21:31:36 +03:00
"default": True
}
}
def get_name(self):
return "titiva"