Skip to content

Commit

Permalink
Merge branch 'release/v1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed May 30, 2018
2 parents 5db9a56 + aa064b8 commit d293d3e
Show file tree
Hide file tree
Showing 61 changed files with 2,003 additions and 458 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ env:
- PLATFORMIO_PROJECT_DIR=examples/arduino-wifiscan
- PLATFORMIO_PROJECT_DIR=examples/espidf-ble-adv
- PLATFORMIO_PROJECT_DIR=examples/espidf-coap-server
- PLATFORMIO_PROJECT_DIR=examples/espidf-exceptions
- PLATFORMIO_PROJECT_DIR=examples/espidf-hello-world
- PLATFORMIO_PROJECT_DIR=examples/espidf-http-request
- PLATFORMIO_PROJECT_DIR=examples/espidf-peripherals-uart
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ environment:
- PLATFORMIO_PROJECT_DIR: "examples/arduino-wifiscan"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-ble-adv"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-coap-server"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-exceptions"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-hello-world"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-http-request"
- PLATFORMIO_PROJECT_DIR: "examples/espidf-peripherals-uart"
Expand Down
18 changes: 15 additions & 3 deletions boards/esp-wrover-kit.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"core": "esp32",
"extra_flags": "-DARDUINO_ESP32_DEV",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"hwids": [
[
"0x0403",
"0x6010"
]
],
"f_flash": "40000000L",
"flash_mode": "dio",
"ldscript": "esp32_out.ld",
"mcu": "esp32",
"variant": "esp32"
Expand All @@ -21,6 +21,11 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp32-wrover.cfg",
"onboard_tools": ["ft2232h"],
"default_tools": ["ft2232h"]
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -32,7 +37,14 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"ft2232h",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://espressif.com/en/products/hardware/esp-wrover-kit/overview",
"vendor": "Espressif"
Expand Down
13 changes: 11 additions & 2 deletions boards/esp32-evb.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"build": {
"core": "esp32",
"extra_flags": "-DARDUINO_ESP32-EVB",
"extra_flags": "-DARDUINO_ESP32_EVB",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
Expand All @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://www.olimex.com/Products/IoT/ESP32-EVB/open-source-hardware",
"vendor": "OLIMEX"
Expand Down
13 changes: 11 additions & 2 deletions boards/esp32-gateway.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"build": {
"core": "esp32",
"extra_flags": "-DARDUINO_ESP32-GATEWAY",
"extra_flags": "-DARDUINO_ESP32_GATEWAY",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
Expand All @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://www.olimex.com/Products/IoT/ESP32-GATEWAY/open-source-hardware",
"vendor": "OLIMEX"
Expand Down
5 changes: 4 additions & 1 deletion boards/esp320.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool"
]
},
"url": "http://www.sweetpeas.se/controller-modules/10-esp210.html",
"vendor": "Electronic SweetPeas"
Expand Down
11 changes: 10 additions & 1 deletion boards/esp32dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://en.wikipedia.org/wiki/ESP32",
"vendor": "Espressif"
Expand Down
11 changes: 10 additions & 1 deletion boards/esp32doit-devkit-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "http://www.doit.am/",
"vendor": "DOIT"
Expand Down
11 changes: 10 additions & 1 deletion boards/esp32thing.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://www.sparkfun.com/products/13907",
"vendor": "SparkFun Electronics"
Expand Down
15 changes: 12 additions & 3 deletions boards/esp32vn-iot-uno.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
{
"build": {
"core": "esp32",
"extra_flags": "-DARDUINO_esp32vn-iot-uno",
"extra_flags": "-DARDUINO_esp32vn_iot_uno",
"f_cpu": "240000000L",
"f_flash": "40000000L",
"flash_mode": "dio",
"ldscript": "esp32_out.ld",
"mcu": "esp32",
"variant": "esp32vn-iot-uno"
"variant": "esp32vn_iot_uno"
},
"connectivity": [
"wifi",
"bluetooth",
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://esp32.vn/",
"vendor": "ESP32vn"
Expand Down
5 changes: 4 additions & 1 deletion boards/espea32.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool"
]
},
"url": "https://blog.aprbrother.com/product/espea",
"vendor": "April Brother"
Expand Down
11 changes: 10 additions & 1 deletion boards/espectro32.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 2000000,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://shop.makestro.com/product/espectro32",
"vendor": "DycodeX"
Expand Down
11 changes: 10 additions & 1 deletion boards/espino32.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "http://thaieasyelec.com/products/development-boards/espino-wifi-development-board-detail.html",
"vendor": "ThaiEasyElec"
Expand Down
11 changes: 10 additions & 1 deletion boards/featheresp32.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://www.adafruit.com/product/3405",
"vendor": "Adafruit"
Expand Down
11 changes: 10 additions & 1 deletion boards/firebeetle32.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
"ethernet",
"can"
],
"debug": {
"openocd_board": "esp-wroom-32.cfg"
},
"frameworks": [
"arduino",
"espidf"
Expand All @@ -26,7 +29,13 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool",
"olimex-arm-usb-tiny-h",
"olimex-arm-usb-ocd-h",
"minimodule"
]
},
"url": "https://dfrobotblog.wordpress.com",
"vendor": "DFRobot"
Expand Down
5 changes: 4 additions & 1 deletion boards/heltec_wifi_kit_32.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool"
]
},
"url": "http://www.heltec.cn",
"vendor": "Heltec Automation"
Expand Down
5 changes: 4 additions & 1 deletion boards/heltec_wifi_lora_32.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"maximum_size": 1310720,
"require_upload_port": true,
"speed": 115200,
"wait_for_upload_port": true
"protocol": "esptool",
"protocols": [
"esptool"
]
},
"url": "http://www.heltec.cn",
"vendor": "Heltec Automation"
Expand Down
Loading

0 comments on commit d293d3e

Please sign in to comment.