Skip to content

Commit 087967e

Browse files
krish2718rlubos
authored andcommitted
wifi_prov_core: Fix version bump
The version enumeration was bumped instead of the versino value, this causes version not to be parsed and provisioning fails. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent 196e9eb commit 087967e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/net/wifi_prov_core/wifi_prov_core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extern "C" {
3232
#define RESULT_MSG_MAX_LENGTH Result_size
3333

3434
/* WiFi Provisioning Service Version */
35-
#define PROV_SVC_VER 0x01
35+
#define PROV_SVC_VER 0x02
3636

3737
/**
3838
* @brief Handle received WiFi provisioning request

subsys/net/lib/wifi_prov_core/proto/version.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ option java_multiple_files = true;
99
option java_package = "no.nordicsemi.android.wifi.provisioning";
1010

1111
message Info {
12-
required uint32 version = 2;
12+
required uint32 version = 1;
1313
}

0 commit comments

Comments
 (0)