Skip to content

Commit 9b04a36

Browse files
committedMar 23, 2023
Merge branch 'release/v4.2.0'
2 parents d056633 + f275a05 commit 9b04a36

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://github.com/platformio/platform-espressif8266/workflows/Examples/badge.svg)](https://github.com/platformio/platform-espressif8266/actions)
44

5-
Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.
5+
ESP8266 is a cost-effective and highly integrated Wi-Fi MCU with built-in TCP/IP networking software for IoT applications. ESP8266 integrates an enhanced version of Tensilica’s L106 Diamond series 32-bit processor and on-chip SRAM.
66

77
* [Home](https://registry.platformio.org/platforms/platformio/espressif8266) (home page in the PlatformIO Registry)
88
* [Documentation](https://docs.platformio.org/page/platforms/espressif8266.html) (advanced usage, packages, boards, frameworks, etc.)

‎boards/esp_wroom_02.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"esp8266-rtos-sdk",
2020
"esp8266-nonos-sdk"
2121
],
22-
"name": "ESP-WROOM-02",
22+
"name": "Espressif ESP-WROOM-02",
2323
"upload": {
2424
"maximum_ram_size": 81920,
2525
"maximum_size": 2097152,

‎boards/espmxdevkit.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
"ldscript": "eagle.flash.1m256.ld"
55
},
66
"core": "esp8266",
7-
"extra_flags": "-DESP8266 -DARDUINO_ARCH_ESP8266 -DARDUINO_ESP8266_ESP01",
7+
"extra_flags": [
8+
"-DESP8266",
9+
"-DARDUINO_ARCH_ESP8266",
10+
"-DARDUINO_ESP8266_ESP01",
11+
"-DLED_BUILTIN=16"
12+
],
813
"f_cpu": "80000000L",
914
"f_flash": "40000000L",
1015
"flash_mode": "dout",

‎examples/arduino-blink/platformio.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ platform = espressif8266
3333
framework = arduino
3434
board = espinotee
3535

36-
[env:espresso lite v1]
36+
[env:espresso_lite_v1]
3737
platform = espressif8266
3838
framework = arduino
3939
board = espresso_lite_v1

‎platform.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "espressif8266",
33
"title": "Espressif 8266",
4-
"description": "Espressif Systems is a privately held fabless semiconductor company. They provide wireless communications and Wi-Fi chips which are widely used in mobile devices and the Internet of Things applications.",
4+
"description": "ESP8266 is a cost-effective and highly integrated Wi-Fi MCU with built-in TCP/IP networking software for IoT applications. ESP8266 integrates an enhanced version of Tensilica’s L106 Diamond series 32-bit processor and on-chip SRAM.",
55
"homepage": "https://espressif.com/",
66
"license": "Apache-2.0",
77
"keywords": [
@@ -17,7 +17,7 @@
1717
"type": "git",
1818
"url": "https://github.com/platformio/platform-espressif8266.git"
1919
},
20-
"version": "4.1.0",
20+
"version": "4.2.0",
2121
"frameworks": {
2222
"arduino": {
2323
"package": "framework-arduinoespressif8266",
@@ -49,7 +49,7 @@
4949
"type": "framework",
5050
"optional": true,
5151
"owner": "platformio",
52-
"version": "~3.30101.0"
52+
"version": "~3.30102.0"
5353
},
5454
"framework-esp8266-rtos-sdk": {
5555
"type": "framework",

0 commit comments

Comments
 (0)
Please sign in to comment.