Skip to content

Commit d28c7d1

Browse files
authored
Merge branch 'betaflight:master' into fixat32macos
2 parents 905c69a + 44976bd commit d28c7d1

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/deploy-preview.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 'Preview Deployment'
22
on:
3-
pull_request:
3+
pull_request_target:
44
branches:
55
- master
66

@@ -35,9 +35,6 @@ jobs:
3535
- name: Deploy to Cloudflare
3636
id: deploy
3737
uses: cloudflare/wrangler-action@v3
38-
env:
39-
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
40-
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
4138
with:
4239
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
4340
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

src/js/protocols/devices.js

+6
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,12 @@ export const bluetoothDevices = [
4141
writeCharacteristic: "0000abf1-0000-1000-8000-00805f9b34fb",
4242
readCharacteristic: "0000abf2-0000-1000-8000-00805f9b34fb",
4343
},
44+
{
45+
name: "DroneBridge",
46+
serviceUuid: "0000db32-0000-1000-8000-00805f9b34fb",
47+
writeCharacteristic: "0000db33-0000-1000-8000-00805f9b34fb",
48+
readCharacteristic: "0000db34-0000-1000-8000-00805f9b34fb",
49+
},
4450
];
4551

4652
export const serialDevices = [

0 commit comments

Comments
 (0)