mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Added support for *Engduino* boards // Resolve #38
This commit is contained in:
11
HISTORY.rst
11
HISTORY.rst
@ -6,14 +6,17 @@ Release History
|
|||||||
|
|
||||||
* Implemented `platformio boards <http://docs.platformio.ikravets.com/en/latest/userguide/cmd_boards.html>`_
|
* Implemented `platformio boards <http://docs.platformio.ikravets.com/en/latest/userguide/cmd_boards.html>`_
|
||||||
command (`issue #11 <https://github.com/ivankravets/platformio/issues/11>`_)
|
command (`issue #11 <https://github.com/ivankravets/platformio/issues/11>`_)
|
||||||
|
* Added support of *Engduino* boards for
|
||||||
|
`atmelavr <http://docs.platformio.ikravets.com/en/latest/platforms/atmelavr.html#engduino>`__
|
||||||
|
platform (`issue #38 <https://github.com/ivankravets/platformio/issues/38>`_)
|
||||||
* Added `example with uploading firmware <http://docs.platformio.ikravets.com/en/latest/projectconf.html#examples>`_
|
* Added `example with uploading firmware <http://docs.platformio.ikravets.com/en/latest/projectconf.html#examples>`_
|
||||||
via USB programmer (USBasp) to
|
via USB programmer (USBasp) for
|
||||||
`atmelavr <http://docs.platformio.ikravets.com/en/latest/platforms/atmelavr.html>`_
|
`atmelavr <http://docs.platformio.ikravets.com/en/latest/platforms/atmelavr.html>`_
|
||||||
MCUs (`issue #35 <https://github.com/ivankravets/platformio/issues/35>`_)
|
*MCUs* (`issue #35 <https://github.com/ivankravets/platformio/issues/35>`_)
|
||||||
* Automatic detection of port on `platformio serialports monitor <http://docs.platformio.ikravets.com/en/latest/userguide/cmd_serialports.html#platformio-serialports-monitor>`_
|
* Automatic detection of port on `platformio serialports monitor <http://docs.platformio.ikravets.com/en/latest/userguide/cmd_serialports.html#platformio-serialports-monitor>`_
|
||||||
(`issue #37 <https://github.com/ivankravets/platformio/issues/37>`_)
|
(`issue #37 <https://github.com/ivankravets/platformio/issues/37>`_)
|
||||||
* Fixed urllib3's SSL warning under Python <= 2.7.2 (`issue #39 <https://github.com/ivankravets/platformio/issues/39>`_)
|
* Fixed urllib3's *SSL* warning under Python <= 2.7.2 (`issue #39 <https://github.com/ivankravets/platformio/issues/39>`_)
|
||||||
* Fixed bug with Arduino's USB boards (`issue #40 <https://github.com/ivankravets/platformio/issues/40>`_)
|
* Fixed bug with *Arduino USB* boards (`issue #40 <https://github.com/ivankravets/platformio/issues/40>`_)
|
||||||
|
|
||||||
0.9.2 (2014-12-10)
|
0.9.2 (2014-12-10)
|
||||||
------------------
|
------------------
|
||||||
|
71
platformio/boards/engduino.json
Normal file
71
platformio/boards/engduino.json
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"engduinov1": {
|
||||||
|
"build": {
|
||||||
|
"board": "AVR_ENGDUINOV1",
|
||||||
|
"core": "arduino",
|
||||||
|
"f_cpu": "8000000L",
|
||||||
|
"mcu": "atmega32u4",
|
||||||
|
"pid": "0x9208",
|
||||||
|
"usb_product": "EngduinoV1",
|
||||||
|
"variant": "engduinov1",
|
||||||
|
"vid": "0x1B4F"
|
||||||
|
},
|
||||||
|
"name": "EngduinoV1",
|
||||||
|
"platform": "atmelavr",
|
||||||
|
"upload": {
|
||||||
|
"disable_flushing": true,
|
||||||
|
"maximum_ram_size": 2560,
|
||||||
|
"maximum_size": 28672,
|
||||||
|
"protocol": "avr109",
|
||||||
|
"speed": 57600,
|
||||||
|
"use_1200bps_touch": true,
|
||||||
|
"wait_for_upload_port": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"engduinov2": {
|
||||||
|
"build": {
|
||||||
|
"board": "AVR_ENGDUINOV2",
|
||||||
|
"core": "arduino",
|
||||||
|
"f_cpu": "8000000L",
|
||||||
|
"mcu": "atmega32u4",
|
||||||
|
"pid": "0x9208",
|
||||||
|
"usb_product": "EngduinoV2",
|
||||||
|
"variant": "engduinov2",
|
||||||
|
"vid": "0x1B4F"
|
||||||
|
},
|
||||||
|
"name": "EngduinoV2",
|
||||||
|
"platform": "atmelavr",
|
||||||
|
"upload": {
|
||||||
|
"disable_flushing": true,
|
||||||
|
"maximum_ram_size": 2560,
|
||||||
|
"maximum_size": 28672,
|
||||||
|
"protocol": "avr109",
|
||||||
|
"speed": 57600,
|
||||||
|
"use_1200bps_touch": true,
|
||||||
|
"wait_for_upload_port": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"engduinov3": {
|
||||||
|
"build": {
|
||||||
|
"board": "AVR_ENGDUINOV3",
|
||||||
|
"core": "arduino",
|
||||||
|
"f_cpu": "8000000L",
|
||||||
|
"mcu": "atmega32u4",
|
||||||
|
"pid": "0x9208",
|
||||||
|
"usb_product": "EngduinoV3",
|
||||||
|
"variant": "engduinov3",
|
||||||
|
"vid": "0x1B4F"
|
||||||
|
},
|
||||||
|
"name": "EngduinoV3",
|
||||||
|
"platform": "atmelavr",
|
||||||
|
"upload": {
|
||||||
|
"disable_flushing": true,
|
||||||
|
"maximum_ram_size": 2560,
|
||||||
|
"maximum_size": 28672,
|
||||||
|
"protocol": "avr109",
|
||||||
|
"speed": 57600,
|
||||||
|
"use_1200bps_touch": true,
|
||||||
|
"wait_for_upload_port": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user