Skip to content

Commit f889b8f

Browse files
committed
feat: update security levels in BLE provisioning and network provisioning, increment version numbers
1 parent e82f128 commit f889b8f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

client/lib/core/services/devices/ble_provisioner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ abstract class IBleProvisioner {
1515
}
1616

1717
class BleProvisioner implements IBleProvisioner {
18-
final _plugin = FlutterEspBleProv();
18+
final _plugin = FlutterEspBleProv(defaultSecurity: SecurityLevel.unsecure);
1919

2020
BleProvisioner();
2121

client/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 0.5.4
19+
version: 0.5.5
2020

2121
workspace:
2222
- packages/lw_wot

fw/components/borneo-core/src/wifi/np.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int bo_wifi_np_init()
120120
int bo_wifi_np_start()
121121
{
122122
/* Use security level 0 (no security, no POP) */
123-
network_prov_security_t security = NETWORK_PROV_SECURITY_1;
123+
network_prov_security_t security = NETWORK_PROV_SECURITY_0;
124124
const void* sec_params = NULL;
125125
const char* service_key = NULL;
126126
BO_TRY_ESP(network_prov_mgr_endpoint_create("cbor"));

fw/lyfi/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.11
1+
0.5.12

0 commit comments

Comments
 (0)