Add openCM3 framework to "titivate" platform

This commit is contained in:
Ivan Kravets
2015-02-14 16:37:44 +02:00
parent b55dc0917d
commit 102e3f98de
2 changed files with 12 additions and 1 deletions

View File

@ -30,6 +30,9 @@ Packages
* - ``framework-energiativa`` * - ``framework-energiativa``
- framework - framework
- See below in :ref:`titiva_frameworks` - See below in :ref:`titiva_frameworks`
* - ``framework-opencm3``
- framework
- See below in :ref:`titiva_frameworks`
.. note:: .. note::
You can install ``titiva`` platform with these packages You can install ``titiva`` platform with these packages
@ -50,6 +53,9 @@ Frameworks
* - ``energia`` * - ``energia``
- Energia Wiring-based Framework (LM4F Core) - Energia Wiring-based Framework (LM4F Core)
- `Documentation <http://energia.nu/reference/>`_ - `Documentation <http://energia.nu/reference/>`_
* - ``opencm3``
- libOpenCM3 Framework
- `Documentation <http://www.libopencm3.org>`_
Boards Boards

View File

@ -8,7 +8,7 @@ class TitivaPlatform(BasePlatform):
""" """
An embedded platform for TI TIVA C ARM microcontrollers An embedded platform for TI TIVA C ARM microcontrollers
(with Energia Framework) (with Energia and OpenCM3 Frameworks)
""" """
PACKAGES = { PACKAGES = {
@ -30,5 +30,10 @@ class TitivaPlatform(BasePlatform):
"framework-energiativa": { "framework-energiativa": {
"alias": "framework", "alias": "framework",
"default": True "default": True
},
"framework-opencm3": {
"alias": "framework",
"default": True
} }
} }