forked from platformio/platform-ststm32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platform.json
107 lines (107 loc) · 2.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "ststm32",
"title": "ST STM32",
"description": "The STM32 family of 32-bit Flash MCUs based on the ARM Cortex-M processor is designed to offer new degrees of freedom to MCU users. It offers a 32-bit product range that combines very high performance, real-time capabilities, digital signal processing, and low-power, low-voltage operation, while maintaining full integration and ease of development.",
"url": "http://www.st.com/web/en/catalog/mmc/FM141/SC1169?sc=stm32",
"homepage": "http://platformio.org/platforms/ststm32",
"license": "Apache-2.0",
"engines": {
"platformio": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platform-ststm32.git"
},
"version": "4.5.0",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json"
],
"frameworks": {
"mbed": {
"package": "framework-mbed",
"script": "builder/frameworks/mbed.py"
},
"cmsis": {
"package": "framework-cmsis",
"script": "builder/frameworks/cmsis.py"
},
"spl": {
"package": "framework-spl",
"script": "builder/frameworks/spl.py"
},
"libopencm3": {
"package": "framework-libopencm3",
"script": "builder/frameworks/libopencm3/libopencm3.py"
},
"arduino": {
"package": "framework-arduinoststm32",
"script": "builder/frameworks/arduino.py"
},
"stm32cube": {
"package": "framework-stm32cube",
"script": "builder/frameworks/stm32cube.py"
}
},
"packages": {
"toolchain-gccarmnoneeabi": {
"type": "toolchain",
"version": ">=1.60301.0"
},
"framework-mbed": {
"type": "framework",
"optional": true,
"version": "~5.51001.1"
},
"framework-cmsis": {
"type": "framework",
"optional": true,
"version": "~2.50400.181126"
},
"framework-spl": {
"type": "framework",
"optional": true,
"version": "~2.10201.0"
},
"framework-libopencm3": {
"type": "framework",
"optional": true,
"version": "~1.1.0"
},
"framework-arduinoststm32": {
"type": "framework",
"optional": true,
"version": "~3.10400.181126"
},
"framework-arduinostm32mxchip": {
"type": "framework",
"optional": true,
"version": "~1.3.0"
},
"framework-stm32cube": {
"type": "framework",
"optional": true,
"version": "~2.0.181130"
},
"tool-stlink": {
"type": "uploader",
"optional": true,
"version": "~1.10400.0"
},
"tool-stm32duino": {
"type": "uploader",
"optional": true,
"version": "~1.0.0"
},
"tool-openocd": {
"type": "uploader",
"optional": true,
"version": "~1.1000.0"
},
"tool-jlink": {
"type": "uploader",
"optional": true,
"version": "^1.63208.0"
}
}
}