Added support for Raspberry Pi, Microduino and Raspduino

This commit is contained in:
Ivan Kravets
2014-07-31 16:18:17 +03:00
parent c4d2dc6267
commit e81723f73c
2 changed files with 15 additions and 2 deletions

View File

@ -4,8 +4,8 @@ Release History
1.0.0 (?)
---------
0.4.0 (?)
---------
0.4.0 (2014-07-31)
------------------
* Implemented ``serialports`` command
* Allowed to put special build flags only for ``src`` files via
@ -17,6 +17,8 @@ Release History
``platformio run -t uploadlazy`` target (no dependencies to framework libs,
ELF and etc.)
* Allowed to skip default packages via ``platformio install --skip-default-package`` flag
* Added tools for Raspberry Pi platform
* Added support for Microduino and Raspduino boards in ``atmelavr`` platform
0.3.1 (2014-06-21)

View File

@ -110,6 +110,17 @@ Platform ``atmelavr``
* ``pro8MHzatmega328`` Arduino Pro or Pro Mini (ATmega328, 3.3V, 8MHz)
* ``pro16MHzatmega328`` Arduino Pro or Pro Mini (ATmega328, 5V, 16MHz)
* ``uno`` Arduino Uno
* ``raspduino`` Raspduino
* ``328p8m`` Microduino Core (ATmega328P, 3.3V, 8MHz)
* ``328p16m`` Microduino Core (Atmega328P, 5V, 16MHz)
* ``168pa8m`` Microduino Core (ATmega168PA, 3.3V, 8MHz)
* ``168pa16m`` Microduino Core (ATmega168PA, 5V, 16MHz)
* ``644pa8m`` Microduino Core+ (ATmega644PA, 3.3V, 8MHz)
* ``644pa16m`` Microduino Core+ (ATmega644PA, 5V, 16MHz)
* ``1284p8m`` Microduino-Core+ (ATmega1284P, 3.3V, 8MHz)
* ``1284p16m`` Microduino-Core+ (ATmega1284P, 5V, 16MHz)
* ``32u416m`` Microduino-Core USB (ATmega32U4, 5V, 16MHz)
Platform ``timsp430``