1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

add board WiFiduino (#4590)

This commit is contained in:
i3water
2018-04-02 00:51:59 +08:00
committed by david gauchard
parent 212a829942
commit 7ae8f98e57
6 changed files with 230 additions and 0 deletions

View File

@ -713,6 +713,21 @@ boards = collections.OrderedDict([
'To put the board into bootloader mode, configure a serial connection as above, connect **P2 to GND**, then re-apply power. Once flashing is complete, remove the connection from P2 to GND, then re-apply power to boot into normal mode.',
],
}),
( 'wifiduino', {
'name': 'WiFiduino',
'opts': {
'.build.board': 'WIFIDUINO_ESP8266',
'.build.variant': 'wifiduino',
},
'macro': [
'resetmethod_nodemcu',
'flashmode_dio',
'flashfreq_40',
'4M',
],
'serial': '921',
'desc': [ 'Product page: https://wifiduino.com/esp8266' ],
}),
])
################################################################