forked from platformio/platform-raspberrypi
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathplatform.json
More file actions
122 lines (122 loc) · 3.57 KB
/
platform.json
File metadata and controls
122 lines (122 loc) · 3.57 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "raspberrypi",
"title": "Raspberry Pi RP2040",
"description": "RP2040 is a low-cost, high-performance microcontroller device with a large on-chip memory, symmetric dual-core processor complex, and rich peripheral.",
"homepage": "https://www.raspberrypi.org/documentation/rp2040/getting-started/",
"license": "Apache-2.0",
"keywords": [
"dev-platform",
"ARM",
"Cortex-M",
"Raspberry Pi",
"RP2040"
],
"engines": {
"platformio": "^6"
},
"repository": {
"type": "git",
"url": "https://github.com/platformio/platform-raspberrypi.git"
},
"version": "1.18.0",
"frameworks": {
"arduino": {
"package": "framework-arduino-mbed",
"script": "builder/frameworks/arduino/arduino.py"
},
"picosdk": {
"package": "framework-picosdk",
"script": "builder/frameworks/picosdk.py"
},
"mbed-ce": {
"package": "framework-mbed-ce",
"script": "builder/frameworks/mbed-ce.py",
"description": "Community edition of Mbed OS, an open-source operating system designed for the Internet of Things.",
"homepage": "https://mbed-ce.dev",
"title": "Mbed CE"
}
},
"packages": {
"toolchain-gccarmnoneeabi": {
"type": "toolchain",
"owner": "platformio",
"version": ">=1.90201.0,<1.90302.0"
},
"toolchain-rp2040-earlephilhower": {
"type": "toolchain",
"optional": true,
"owner": "earlephilhower",
"version": "https://github.com/maxgerhardt/toolchain-dummy/archive/refs/heads/main.zip"
},
"toolchain-riscv-rp2350": {
"type": "toolchain",
"optional": true,
"owner": "platformio",
"version": "https://github.com/maxgerhardt/toolchain-dummy/archive/refs/heads/main-riscv.zip"
},
"framework-arduino-mbed": {
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "~4.4.1"
},
"framework-arduinopico": {
"type": "framework",
"optional": true,
"owner": "earlephilhower",
"version": "https://github.com/earlephilhower/arduino-pico.git#30aead9a6c478ff9951c8be708e68be92808cdab"
},
"framework-picosdk": {
"type": "framework",
"optional": true,
"owner": "platformio",
"version": "https://github.com/maxgerhardt/pico-sdk.git#4315984000afe20ac82c78c597a3c4a591f524b0"
},
"framework-mbed-ce": {
"type": "framework",
"optional": true,
"owner": "mbed-ce-project",
"version": ">=6.99.4"
},
"tool-picotool-rp2040-earlephilhower": {
"type": "uploader",
"optional": false,
"owner": "platformio",
"version": "https://github.com/maxgerhardt/picotool-dummy/archive/refs/heads/main.zip"
},
"tool-pioasm-rp2040-earlephilhower": {
"type": "uploader",
"optional": false,
"owner": "platformio",
"version": "https://github.com/maxgerhardt/pioasm-dummy/archive/refs/heads/main.zip"
},
"tool-openocd-rp2040-earlephilhower": {
"type": "uploader",
"optional": true,
"owner": "earlephilhower",
"version": "~5.100300.0"
},
"tool-jlink": {
"type": "uploader",
"optional": true,
"owner": "platformio",
"version": "^1.81206.0"
},
"tool-mklittlefs-rp2040-earlephilhower": {
"type": "uploader",
"optional": true,
"owner": "earlephilhower",
"version": "~5.100300.0"
},
"tool-ninja": {
"optional": true,
"owner": "platformio",
"version": ">=1.7.0"
},
"tool-cmake": {
"optional": true,
"owner": "platformio",
"version": ">=3.21.0"
}
}
}