WebBLE partial flashing experiment. (#1388)

* support for webble

* more refactoring

* updated check

* flags

* moving flashing to experiments

* always have pairing mode

* fix settings

* added experiment image

* bump pxt

* add missing types

* bump pxt
This commit is contained in:
Peli de Halleux 2018-10-12 16:12:27 -07:00 committed by GitHub
parent 57c89eb49b
commit 82bf0e7107
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 29 additions and 28 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 177 KiB

View File

@ -531,31 +531,27 @@ namespace pxt.editor {
}) })
} }
export function deployCoreAsync(resp: pxtc.CompileResult, d: pxt.commands.DeployOptions = {}): Promise<void> { function uwpDeployCoreAsync(resp: pxtc.CompileResult, d: pxt.commands.DeployOptions = {}): Promise<void> {
const saveHexAsync = () => {
return pxt.commands.saveOnlyAsync(resp);
};
return Promise.resolve()
.then(() => {
const isUwp = !!(window as any).Windows;
if (isUwp) {
// Go straight to flashing // Go straight to flashing
return flashAsync(resp, d); return flashAsync(resp, d);
} }
if (!pxt.usb.isEnabled) {
return saveHexAsync(); function deployCoreAsync(resp: pxtc.CompileResult, d: pxt.commands.DeployOptions = {}): Promise<void> {
}
return pxt.usb.isPairedAsync() return pxt.usb.isPairedAsync()
.then((isPaired) => { .then(isPaired => {
if (isPaired) { if (isPaired) {
// Already paired from earlier in the session or from previous session // Already paired from earlier in the session or from previous session
return flashAsync(resp, d); return flashAsync(resp, d);
} }
// try bluetooth if device is paired
if (pxt.webBluetooth.isPaired())
return pxt.webBluetooth.flashAsync(resp, d)
.catch(e => pxt.commands.saveOnlyAsync(resp));
// No device paired, prompt user // No device paired, prompt user
return saveHexAsync(); return pxt.commands.saveOnlyAsync(resp);
}); });
})
} }
/** /**
@ -820,7 +816,10 @@ namespace pxt.editor {
subclassCode: 0x03 subclassCode: 0x03
}]) }])
if (canHID()) const isUwp = !!(window as any).Windows;
if (isUwp)
pxt.commands.deployCoreAsync = uwpDeployCoreAsync;
else if (canHID() || pxt.webBluetooth.hasPartialFlash())
pxt.commands.deployCoreAsync = deployCoreAsync; pxt.commands.deployCoreAsync = deployCoreAsync;
res.blocklyPatch = patchBlocks; res.blocklyPatch = patchBlocks;

View File

@ -72,7 +72,7 @@
"microbit-dal": { "microbit-dal": {
"bluetooth": { "bluetooth": {
"open": 1, "open": 1,
"pairing_mode": 0, "pairing_mode": null,
"whitelist": 0, "whitelist": 0,
"security_level": null "security_level": null
} }
@ -98,7 +98,7 @@
"microbit-dal": { "microbit-dal": {
"bluetooth": { "bluetooth": {
"open": 0, "open": 0,
"pairing_mode": 1, "pairing_mode": null,
"whitelist": 1, "whitelist": 1,
"security_level": "SECURITY_MODE_ENCRYPTION_WITH_MITM" "security_level": "SECURITY_MODE_ENCRYPTION_WITH_MITM"
} }

View File

@ -38,10 +38,11 @@
"@types/bluebird": "2.0.33", "@types/bluebird": "2.0.33",
"@types/jquery": "3.2.16", "@types/jquery": "3.2.16",
"@types/marked": "0.3.0", "@types/marked": "0.3.0",
"@types/node": "8.0.53" "@types/node": "8.0.53",
"@types/web-bluetooth": "0.0.4"
}, },
"dependencies": { "dependencies": {
"pxt-common-packages": "0.24.2", "pxt-common-packages": "0.24.2",
"pxt-core": "4.1.28" "pxt-core": "4.1.30"
} }
} }

View File

@ -275,7 +275,8 @@
"allowPackageExtensions", "allowPackageExtensions",
"instructions", "instructions",
"debugger", "debugger",
"bluetoothUartConsole" "bluetoothUartConsole",
"bluetoothPartialFlashing"
], ],
"bluetoothUartFilters": [{ "bluetoothUartFilters": [{
"namePrefix": "BBC micro:bit" "namePrefix": "BBC micro:bit"