-
Notifications
You must be signed in to change notification settings - Fork 27
/
platform.json
76 lines (76 loc) · 1.88 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
{
"name": "ststm8",
"title": "ST STM8",
"description": "The STM8 is an 8-bit microcontroller family by STMicroelectronics an extended variant of the ST7 microcontroller architecture. STM8 microcontrollers are particularly low cost for a full-featured 8-bit microcontroller.",
"homepage": "https://www.st.com/en/microcontrollers/stm8-8-bit-mcus.html",
"license": "Apache-2.0",
"keywords": [
"dev-platform",
"STMicroelectronics",
"STM8",
"8-bit"
],
"engines": {
"platformio": "^6"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platform-ststm8.git"
},
"version": "2.1.0",
"frameworks": {
"arduino": {
"package": "framework-arduinoststm8",
"script": "builder/frameworks/arduino.py"
},
"spl": {
"package": "framework-ststm8spl",
"script": "builder/frameworks/spl.py"
}
},
"packages": {
"toolchain-sdcc": {
"type": "toolchain",
"owner": "platformio",
"version": ">=1.40100.0,<1.40201.0",
"optionalVersions": [
"~1.30901.0"
]
},
"framework-arduinoststm8": {
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "~0.50.0"
},
"framework-ststm8spl": {
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "0.20301.181217"
},
"tool-stm8binutils": {
"type": "uploader",
"owner": "platformio",
"version": "0.230.0"
},
"tool-stm8gal": {
"type": "uploader",
"optional": true,
"owner": "platformio",
"version": "~1.5.0"
},
"tool-stm8flash": {
"type": "uploader",
"optional": true,
"owner": "platformio",
"version": "~1.1.0"
},
"tool-openocd": {
"type": "uploader",
"optional": true,
"owner": "platformio",
"version": "~2.1000.0"
}
}
}