forked from platformio/platformio-core
Update Arduino framework for Atmel AVR development platform to 1.6.7
This commit is contained in:
@ -9,6 +9,7 @@ PlatformIO 2.0
|
|||||||
|
|
||||||
* Added support for the new Adafruit boards Bluefruit Micro and Feather
|
* Added support for the new Adafruit boards Bluefruit Micro and Feather
|
||||||
(`issue #403 <https://github.com/platformio/platformio/issues/403>`_)
|
(`issue #403 <https://github.com/platformio/platformio/issues/403>`_)
|
||||||
|
* Updated Arduino framework for Atmel AVR development platform to 1.6.7
|
||||||
|
|
||||||
2.6.3 (2015-12-21)
|
2.6.3 (2015-12-21)
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -63,6 +63,20 @@ Adafruit
|
|||||||
- Flash
|
- Flash
|
||||||
- RAM
|
- RAM
|
||||||
|
|
||||||
|
* - ``bluefruitmicro``
|
||||||
|
- `Adafruit Bluefruit Micro <https://www.adafruit.com/products/2661>`_
|
||||||
|
- ATMEGA32U4
|
||||||
|
- 8 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2.5 Kb
|
||||||
|
|
||||||
|
* - ``feather32u4``
|
||||||
|
- `Adafruit Feather <https://learn.adafruit.com/adafruit-feather-32u4-bluefruit-le/>`_
|
||||||
|
- ATMEGA32U4
|
||||||
|
- 8 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2.5 Kb
|
||||||
|
|
||||||
* - ``flora8``
|
* - ``flora8``
|
||||||
- `Adafruit Flora <http://www.adafruit.com/product/659>`_
|
- `Adafruit Flora <http://www.adafruit.com/product/659>`_
|
||||||
- ATMEGA32U4
|
- ATMEGA32U4
|
||||||
@ -84,6 +98,13 @@ Adafruit
|
|||||||
- 4096 Kb
|
- 4096 Kb
|
||||||
- 80 Kb
|
- 80 Kb
|
||||||
|
|
||||||
|
* - ``metro``
|
||||||
|
- `Adafruit Metro <https://www.adafruit.com/products/2466>`_
|
||||||
|
- ATMEGA328P
|
||||||
|
- 16 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2 Kb
|
||||||
|
|
||||||
* - ``protrinket3``
|
* - ``protrinket3``
|
||||||
- `Adafruit Pro Trinket 3V/12MHz (USB) <http://www.adafruit.com/products/2010>`_
|
- `Adafruit Pro Trinket 3V/12MHz (USB) <http://www.adafruit.com/products/2010>`_
|
||||||
- ATMEGA328P
|
- ATMEGA328P
|
||||||
|
@ -82,6 +82,20 @@ Adafruit
|
|||||||
- Flash
|
- Flash
|
||||||
- RAM
|
- RAM
|
||||||
|
|
||||||
|
* - ``bluefruitmicro``
|
||||||
|
- `Adafruit Bluefruit Micro <https://www.adafruit.com/products/2661>`_
|
||||||
|
- ATMEGA32U4
|
||||||
|
- 8 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2.5 Kb
|
||||||
|
|
||||||
|
* - ``feather32u4``
|
||||||
|
- `Adafruit Feather <https://learn.adafruit.com/adafruit-feather-32u4-bluefruit-le/>`_
|
||||||
|
- ATMEGA32U4
|
||||||
|
- 8 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2.5 Kb
|
||||||
|
|
||||||
* - ``flora8``
|
* - ``flora8``
|
||||||
- `Adafruit Flora <http://www.adafruit.com/product/659>`_
|
- `Adafruit Flora <http://www.adafruit.com/product/659>`_
|
||||||
- ATMEGA32U4
|
- ATMEGA32U4
|
||||||
@ -96,6 +110,13 @@ Adafruit
|
|||||||
- 8 Kb
|
- 8 Kb
|
||||||
- 0.5 Kb
|
- 0.5 Kb
|
||||||
|
|
||||||
|
* - ``metro``
|
||||||
|
- `Adafruit Metro <https://www.adafruit.com/products/2466>`_
|
||||||
|
- ATMEGA328P
|
||||||
|
- 16 MHz
|
||||||
|
- 32 Kb
|
||||||
|
- 2 Kb
|
||||||
|
|
||||||
* - ``protrinket3``
|
* - ``protrinket3``
|
||||||
- `Adafruit Pro Trinket 3V/12MHz (USB) <http://www.adafruit.com/products/2010>`_
|
- `Adafruit Pro Trinket 3V/12MHz (USB) <http://www.adafruit.com/products/2010>`_
|
||||||
- ATMEGA328P
|
- ATMEGA328P
|
||||||
|
@ -39,19 +39,19 @@ env.Replace(
|
|||||||
"-Wall", # show warnings
|
"-Wall", # show warnings
|
||||||
"-ffunction-sections", # place each function in its own section
|
"-ffunction-sections", # place each function in its own section
|
||||||
"-fdata-sections",
|
"-fdata-sections",
|
||||||
# "-MMD", # output dependency info
|
|
||||||
"-mmcu=$BOARD_MCU"
|
"-mmcu=$BOARD_MCU"
|
||||||
],
|
],
|
||||||
|
|
||||||
CPPDEFINES=[
|
CFLAGS=["-std=gnu11"],
|
||||||
"F_CPU=$BOARD_F_CPU"
|
|
||||||
],
|
|
||||||
|
|
||||||
CXXFLAGS=[
|
CXXFLAGS=[
|
||||||
|
"-std=gnu++11",
|
||||||
"-fno-exceptions",
|
"-fno-exceptions",
|
||||||
"-fno-threadsafe-statics"
|
"-fno-threadsafe-statics"
|
||||||
],
|
],
|
||||||
|
|
||||||
|
CPPDEFINES=["F_CPU=$BOARD_F_CPU"],
|
||||||
|
|
||||||
LINKFLAGS=[
|
LINKFLAGS=[
|
||||||
"-Os",
|
"-Os",
|
||||||
"-mmcu=$BOARD_MCU",
|
"-mmcu=$BOARD_MCU",
|
||||||
|
Reference in New Issue
Block a user