-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpxt.json
48 lines (48 loc) · 1.13 KB
/
pxt.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
{
"name": "v1",
"version": "1.0.0",
"description": "Calliope mini 1",
"compileServiceVariant": "minidalusb",
"disablesVariants": [
"minicodal",
"minidal"
],
"core": true,
"dependencies": {
"core": "file:../core",
"core-mini-dal": "file:../core-mini-dal"
},
"icon": "./static/devices/mini1.png",
"files": [
"README.md"
],
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 0
},
"sram_end": "0x20004000",
"RAM_SIZE": "\"16K\""
}
},
"optionalConfig": {
"microbit-dal": {
"bluetooth": {
"enabled": 0
}
}
},
"userConfigs": [
{
"description": "Project compatible with Calliope mini 1",
"config": {
}
},{
"description": "Project compatible with Calliope mini 2",
"config": {
}
}
]
}
}