generated from jp-rad/pxt-ubit-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpxt.json
89 lines (89 loc) · 2.4 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
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
{
"name": "pxt-ubit-bladv",
"version": "0.2.3",
"description": "Accumulate the Complete list of 16-bit Service UUIDs as an AD structure in the advertising payload for micro:bit.",
"dependencies": {
"core": "*"
},
"files": [
"README.md",
"enums.d.ts",
"shims.d.ts",
"bladv.ts",
"bladv.cpp",
"lib/bladvlib.h",
"lib/bladvlib.cpp"
],
"testFiles": [
"test.ts"
],
"targetVersions": {
"target": "4.0.11",
"targetId": "microbit"
},
"supportedTargets": [
"microbit"
],
"preferredEditor": "tsprj",
"yotta": {
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1
}
}
},
"userConfigs": [
{
"description": "Disable Bluetooth Device Infomation Service",
"config": {
"microbit-dal": {
"bluetooth": {
"device_info_service": 0
}
}
}
},
{
"description": "Disable Bluetooth Secure DFU Service",
"config": {
"microbit-dal": {
"bluetooth": {
"dfu_service": 0
}
}
}
},
{
"description": "Disable Bluetooth micro:bit Partial Flashing Service",
"config": {
"microbit-dal": {
"bluetooth": {
"partial_flashing": 0
}
}
}
},
{
"description": "Disable Bluetooth micro:bit Event Service",
"config": {
"microbit-dal": {
"bluetooth": {
"event_service": 0
}
}
}
},
{
"description": "Reset Bluetooth Enabled",
"config": {
"microbit-dal": {
"bluetooth": {
"enabled": 1
}
}
}
}
]
}
}