From 3fcf0a1bda9bf9bfedadb22e58e89fa9841cdb83 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 30 Jun 2015 23:34:01 +0300 Subject: [PATCH] New boards; update packages for pre-built frameworks --- HISTORY.rst | 9 +++++++++ docs/frameworks/mbed.rst | 31 +++++++++++++++++++++++++++++-- docs/platforms/nordicnrf51.rst | 20 ++++++++++++++++++++ docs/platforms/ststm32.rst | 11 +++++++++-- platformio/__init__.py | 2 +- 5 files changed, 68 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b7cfa2c3..6fd21225 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -16,12 +16,21 @@ Release History * Specify library compatibility with the all platforms/frameworks using ``*`` symbol in `library.json `__ +* Added support for new embedded boards: *ST 32L0538DISCOVERY and Delta DFCM-NNN40* + to `Framework mbed `__ +* Updated packages for + `Framework Arduino (AVR, SAM, Espressif and Teensy cores `__, + `Framework mbed `__, + `Espressif ESP8266 SDK `__ + (`issue #246 `_) * Fixed ``stk500v2_command(): command failed`` (`issue #238 `_) * Fixed IDE project generator when board is specified (`issue #242 `_) * Fixed relative path for includes when generating project for IDE (`issue #243 `_) +* Fixed ESP8266 native SDK exception + (`issue #245 `_) 2.1.2 (2015-06-21) ------------------ diff --git a/docs/frameworks/mbed.rst b/docs/frameworks/mbed.rst index 9c60a9fb..4b2feb88 100644 --- a/docs/frameworks/mbed.rst +++ b/docs/frameworks/mbed.rst @@ -59,6 +59,26 @@ CQ Publishing - 64 Kb - 10 Kb +Delta +~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``dfcm_nnn40`` + - `Delta DFCM-NNN40 `_ + - NRF51822 + - 32 MHz + - 256 Kb + - 32 Kb + Embedded Artists ~~~~~~~~~~~~~~~~ @@ -345,11 +365,11 @@ ST - 48 Kb * - ``disco_f334c8`` - - `ST 32F3348DISCOVERY `_ + - `ST 32F3348DISCOVERY `_ - STM32F334C8T6 - 72 MHz - 64 Kb - - 16 Kb + - 12 Kb * - ``disco_f401vc`` - `ST 32F401CDISCOVERY `_ @@ -372,6 +392,13 @@ ST - 2048 Kb - 256 Kb + * - ``disco_l053c8`` + - `ST 32L0538DISCOVERY `_ + - STM32L053C8T6 + - 32 MHz + - 64 Kb + - 8 Kb + * - ``nucleo_f030r8`` - `ST Nucleo F030R8 `_ - STM32F030R8T6 diff --git a/docs/platforms/nordicnrf51.rst b/docs/platforms/nordicnrf51.rst index 6ae93a56..bb922543 100644 --- a/docs/platforms/nordicnrf51.rst +++ b/docs/platforms/nordicnrf51.rst @@ -49,6 +49,26 @@ Boards * For more detailed ``board`` information please scroll tables below by horizontal. +Delta +~~~~~ + +.. list-table:: + :header-rows: 1 + + * - Type ``board`` + - Name + - Microcontroller + - Frequency + - Flash + - RAM + + * - ``dfcm_nnn40`` + - `Delta DFCM-NNN40 `_ + - NRF51822 + - 32 MHz + - 256 Kb + - 32 Kb + JKSoft ~~~~~~ diff --git a/docs/platforms/ststm32.rst b/docs/platforms/ststm32.rst index 3aaec0d5..1276ddbf 100644 --- a/docs/platforms/ststm32.rst +++ b/docs/platforms/ststm32.rst @@ -142,11 +142,11 @@ ST - 48 Kb * - ``disco_f334c8`` - - `ST 32F3348DISCOVERY `_ + - `ST 32F3348DISCOVERY `_ - STM32F334C8T6 - 72 MHz - 64 Kb - - 16 Kb + - 12 Kb * - ``disco_f401vc`` - `ST 32F401CDISCOVERY `_ @@ -169,6 +169,13 @@ ST - 2048 Kb - 256 Kb + * - ``disco_l053c8`` + - `ST 32L0538DISCOVERY `_ + - STM32L053C8T6 + - 32 MHz + - 64 Kb + - 8 Kb + * - ``disco_l152rb`` - `ST STM32LDISCOVERY `_ - STM32L152RBT6 diff --git a/platformio/__init__.py b/platformio/__init__.py index 8fe6d930..53cb20f8 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) Ivan Kravets # See LICENSE for details. -VERSION = (2, 2, "0a1") +VERSION = (2, 2, "0b1") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio"