forked from platformio/platform-espressif8266
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platform.json
80 lines (80 loc) · 2.35 KB
/
platform.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "espressif8266",
"title": "Espressif 8266",
"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.",
"url": "https://espressif.com/",
"homepage": "http://platformio.org/platforms/espressif8266",
"license": "Apache-2.0",
"engines": {
"platformio": "<5"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platform-espressif8266.git"
},
"version": "2.2.2",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json",
"https://raw.githubusercontent.com/eerimoq/simba/master/make/platformio/manifest.json",
"https://raw.githubusercontent.com/yanbe/framework-esp8266-rtos-sdk/master/manifest.json",
"https://raw.githubusercontent.com/sanderv32/framework-esp8266-nonos-sdk/master/manifest.json"
],
"frameworks": {
"arduino": {
"package": "framework-arduinoespressif8266",
"script": "builder/frameworks/arduino.py"
},
"simba": {
"package": "framework-simba",
"script": "builder/frameworks/simba.py"
},
"esp8266-rtos-sdk": {
"package": "framework-esp8266-rtos-sdk",
"script": "builder/frameworks/esp8266-rtos-sdk.py"
},
"esp8266-nonos-sdk": {
"package": "framework-esp8266-nonos-sdk",
"script": "builder/frameworks/esp8266-nonos-sdk.py"
}
},
"packages": {
"toolchain-xtensa": {
"type": "toolchain",
"version": "<3"
},
"framework-arduinoespressif8266": {
"type": "framework",
"optional": true,
"version": "~2.20502.0"
},
"framework-esp8266-rtos-sdk": {
"type": "framework",
"optional": true,
"version": ">=1.5.0-beta"
},
"framework-esp8266-nonos-sdk": {
"type": "framework",
"optional": true,
"version": ">=2.1.0"
},
"framework-simba": {
"type": "framework",
"optional": true,
"version": ">=7.0.0"
},
"tool-esptool": {
"type": "uploader",
"version": "<2"
},
"tool-esptoolpy": {
"type": "uploader",
"version": "~1.20600.0"
},
"tool-mkspiffs": {
"type": "uploader",
"optional": true,
"version": "~1.200.0"
}
}
}