Compare commits

...

2 Commits

Author SHA1 Message Date
vidplace7
bd200ee223 Upgrade trunk 2026-01-29 08:13:27 +00:00
Ben Meadors
d44ceb6eb2 Fix NimBLE deinit null check 2026-01-28 17:17:35 -06:00
2 changed files with 8 additions and 5 deletions

View File

@@ -8,18 +8,18 @@ plugins:
uri: https://github.com/trunk-io/plugins uri: https://github.com/trunk-io/plugins
lint: lint:
enabled: enabled:
- checkov@3.2.497 - checkov@3.2.499
- renovate@42.84.2 - renovate@42.94.6
- prettier@3.8.0 - prettier@3.8.1
- trufflehog@3.92.5 - trufflehog@3.92.5
- yamllint@1.38.0 - yamllint@1.38.0
- bandit@1.9.3 - bandit@1.9.3
- trivy@0.68.2 - trivy@0.68.2
- taplo@0.10.0 - taplo@0.10.0
- ruff@0.14.13 - ruff@0.14.14
- isort@7.0.0 - isort@7.0.0
- markdownlint@0.47.0 - markdownlint@0.47.0
- oxipng@10.0.0 - oxipng@10.1.0
- svgo@4.0.0 - svgo@4.0.0
- actionlint@1.7.10 - actionlint@1.7.10
- flake8@7.3.0 - flake8@7.3.0

View File

@@ -686,6 +686,9 @@ class NimbleBluetoothServerCallback : public NimBLEServerCallbacks
#ifdef NIMBLE_TWO #ifdef NIMBLE_TWO
if (ble->isDeInit) if (ble->isDeInit)
return; return;
#else
if (nimbleBluetooth && nimbleBluetooth->isDeInit)
return;
#endif #endif
meshtastic::BluetoothStatus newStatus(meshtastic::BluetoothStatus::ConnectionState::DISCONNECTED); meshtastic::BluetoothStatus newStatus(meshtastic::BluetoothStatus::ConnectionState::DISCONNECTED);