Skip to content

Commit b19a706

Browse files
philips77carlescufi
authored andcommitted
samples: thingy:53 config improvements
Add SMP reassembly support to BLE samples for Thingy:53. The configuration was copied from smp_srv sample. Also, the mcumboot image version has been incremented to 2.0.0+0. Signed-off-by: Aleksander Nowakowski <aleksander.nowakowski@nordicsemi.no>
1 parent 1b4e983 commit b19a706

File tree

20 files changed

+200
-40
lines changed

20 files changed

+200
-40
lines changed

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp/prj.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
8080

8181
CONFIG_PM_POLICY_CUSTOM=y
8282

83-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
83+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
8484
CONFIG_ISR_STACK_SIZE=1536
8585
CONFIG_MAIN_STACK_SIZE=1024
8686
CONFIG_IDLE_STACK_SIZE=512
@@ -130,6 +130,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
130130
CONFIG_MCUMGR_CMD_IMG_MGMT=y
131131
CONFIG_MCUMGR_CMD_OS_MGMT=y
132132

133+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
134+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
135+
# packet divided into five Bluetooth Write Commands, transmitted with the
136+
# maximum possible MTU value: 498 bytes.
137+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
138+
CONFIG_MCUMGR_BUF_SIZE=2475
139+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
140+
133141
# Enable custom SMP request to erase settings partition.
134142
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
135143
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -191,7 +199,7 @@ CONFIG_USB_DEVICE_LOG_LEVEL_ERR=y
191199
# Bootloader Configuration
192200

193201
CONFIG_BOOTLOADER_MCUBOOT=y
194-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
202+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
195203
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
196204

197205
CONFIG_IMG_MANAGER=y

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp/prj_release.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
7575

7676
CONFIG_PM_POLICY_CUSTOM=y
7777

78-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
78+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
7979
CONFIG_ISR_STACK_SIZE=1536
8080
CONFIG_MAIN_STACK_SIZE=1024
8181
CONFIG_IDLE_STACK_SIZE=512
@@ -129,6 +129,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
129129
CONFIG_MCUMGR_CMD_IMG_MGMT=y
130130
CONFIG_MCUMGR_CMD_OS_MGMT=y
131131

132+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
133+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
134+
# packet divided into five Bluetooth Write Commands, transmitted with the
135+
# maximum possible MTU value: 498 bytes.
136+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
137+
CONFIG_MCUMGR_BUF_SIZE=2475
138+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
139+
132140
# Enable custom SMP request to erase settings partition.
133141
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
134142
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -163,7 +171,7 @@ CONFIG_NEWLIB_LIBC_FLOAT_PRINTF=y
163171
# Bootloader Configuration
164172

165173
CONFIG_BOOTLOADER_MCUBOOT=y
166-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
174+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
167175
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
168176

169177
CONFIG_IMG_MANAGER=y

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp/prj_rtt.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
8282

8383
CONFIG_PM_POLICY_CUSTOM=y
8484

85-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
85+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
8686
CONFIG_ISR_STACK_SIZE=1536
8787
CONFIG_MAIN_STACK_SIZE=1024
8888
CONFIG_IDLE_STACK_SIZE=512
@@ -136,6 +136,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
136136
CONFIG_MCUMGR_CMD_IMG_MGMT=y
137137
CONFIG_MCUMGR_CMD_OS_MGMT=y
138138

139+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
140+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
141+
# packet divided into five Bluetooth Write Commands, transmitted with the
142+
# maximum possible MTU value: 498 bytes.
143+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
144+
CONFIG_MCUMGR_BUF_SIZE=2475
145+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
146+
139147
# Enable custom SMP request to erase settings partition.
140148
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
141149
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -184,7 +192,7 @@ CONFIG_LOG_PRINTK=y
184192
# Bootloader Configuration
185193

186194
CONFIG_BOOTLOADER_MCUBOOT=y
187-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
195+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
188196
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
189197

190198
CONFIG_IMG_MANAGER=y

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp_ns/prj.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
8080

8181
CONFIG_PM_POLICY_CUSTOM=y
8282

83-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
83+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
8484
CONFIG_ISR_STACK_SIZE=1536
8585
CONFIG_MAIN_STACK_SIZE=1024
8686
CONFIG_IDLE_STACK_SIZE=512
@@ -130,6 +130,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
130130
CONFIG_MCUMGR_CMD_IMG_MGMT=y
131131
CONFIG_MCUMGR_CMD_OS_MGMT=y
132132

133+
# Enable the MCUmgr Packet Reassembly feature over Bluetooth and its
134+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
135+
# packet divided into five Bluetooth Write Commands, transmitted with the
136+
# maximum possible MTU value: 498 bytes.
137+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
138+
CONFIG_MCUMGR_BUF_SIZE=2475
139+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
140+
133141
# Enable custom SMP request to erase settings partition.
134142
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
135143
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -191,7 +199,7 @@ CONFIG_USB_DEVICE_LOG_LEVEL_ERR=y
191199
# Bootloader Configuration
192200

193201
CONFIG_BOOTLOADER_MCUBOOT=y
194-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
202+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
195203
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
196204

197205
CONFIG_IMG_MANAGER=y

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp_ns/prj_release.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
7575

7676
CONFIG_PM_POLICY_CUSTOM=y
7777

78-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
78+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
7979
CONFIG_ISR_STACK_SIZE=1536
8080
CONFIG_MAIN_STACK_SIZE=1024
8181
CONFIG_IDLE_STACK_SIZE=512
@@ -129,6 +129,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
129129
CONFIG_MCUMGR_CMD_IMG_MGMT=y
130130
CONFIG_MCUMGR_CMD_OS_MGMT=y
131131

132+
# Enable the MCUmgr Packet Reassembly feature over Bluetooth and its
133+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
134+
# packet divided into five Bluetooth Write Commands, transmitted with the
135+
# maximum possible MTU value: 498 bytes.
136+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
137+
CONFIG_MCUMGR_BUF_SIZE=2475
138+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
139+
132140
# Enable custom SMP request to erase settings partition.
133141
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
134142
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -163,7 +171,7 @@ CONFIG_NEWLIB_LIBC_FLOAT_PRINTF=y
163171
# Bootloader Configuration
164172

165173
CONFIG_BOOTLOADER_MCUBOOT=y
166-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
174+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
167175
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
168176

169177
CONFIG_IMG_MANAGER=y

applications/machine_learning/configuration/thingy53_nrf5340_cpuapp_ns/prj_rtt.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ CONFIG_EI_WRAPPER_DATA_BUF_SIZE=1000
8282

8383
CONFIG_PM_POLICY_CUSTOM=y
8484

85-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
85+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
8686
CONFIG_ISR_STACK_SIZE=1536
8787
CONFIG_MAIN_STACK_SIZE=1024
8888
CONFIG_IDLE_STACK_SIZE=512
@@ -136,6 +136,14 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
136136
CONFIG_MCUMGR_CMD_IMG_MGMT=y
137137
CONFIG_MCUMGR_CMD_OS_MGMT=y
138138

139+
# Enable the MCUmgr Packet Reassembly feature over Bluetooth and its
140+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
141+
# packet divided into five Bluetooth Write Commands, transmitted with the
142+
# maximum possible MTU value: 498 bytes.
143+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
144+
CONFIG_MCUMGR_BUF_SIZE=2475
145+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
146+
139147
# Enable custom SMP request to erase settings partition.
140148
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
141149
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -184,7 +192,7 @@ CONFIG_LOG_PRINTK=y
184192
# Bootloader Configuration
185193

186194
CONFIG_BOOTLOADER_MCUBOOT=y
187-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
195+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
188196
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
189197

190198
CONFIG_IMG_MANAGER=y

applications/matter_weather_station/configuration/thingy53_nrf5340_cpuapp/prj.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ CONFIG_AVERAGE_CURRENT_CONSUMPTION=10000
141141
# Bootloader and Device Firmware Upgrade related settings
142142

143143
CONFIG_BOOTLOADER_MCUBOOT=y
144-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
144+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
145145
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
146146

147147
# QSPI configuration
@@ -161,6 +161,14 @@ CONFIG_MCUMGR_SMP_BT=y
161161
CONFIG_MCUMGR_SMP_BT_AUTHEN=n
162162
CONFIG_MCUMGR_BUF_COUNT=6
163163

164+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
165+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
166+
# packet divided into five Bluetooth Write Commands, transmitted with the
167+
# maximum possible MTU value: 498 bytes.
168+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
169+
CONFIG_MCUMGR_BUF_SIZE=2475
170+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
171+
164172
# Enable custom SMP request to erase settings partition.
165173
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
166174
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -174,7 +182,7 @@ CONFIG_BT_BUF_ACL_RX_SIZE=502
174182
CONFIG_BT_CONN_TX_MAX=6
175183

176184
# Increase system workqueue size, as SMP is processed within it
177-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
185+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
178186

179187
# Enable Matter OTA
180188
CONFIG_CHIP_OTA_REQUESTOR=y

applications/matter_weather_station/configuration/thingy53_nrf5340_cpuapp/prj_release.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ CONFIG_AVERAGE_CURRENT_CONSUMPTION=10000
123123
# Bootloader and Device Firmware Upgrade related settings
124124

125125
CONFIG_BOOTLOADER_MCUBOOT=y
126-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
126+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
127127
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
128128

129129
# QSPI configuration
@@ -143,6 +143,14 @@ CONFIG_MCUMGR_SMP_BT=y
143143
CONFIG_MCUMGR_SMP_BT_AUTHEN=n
144144
CONFIG_MCUMGR_BUF_COUNT=6
145145

146+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
147+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
148+
# packet divided into five Bluetooth Write Commands, transmitted with the
149+
# maximum possible MTU value: 498 bytes.
150+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
151+
CONFIG_MCUMGR_BUF_SIZE=2475
152+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
153+
146154
# Enable custom SMP request to erase settings partition.
147155
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
148156
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
@@ -156,7 +164,7 @@ CONFIG_BT_BUF_ACL_RX_SIZE=502
156164
CONFIG_BT_CONN_TX_MAX=6
157165

158166
# Increase system workqueue size, as SMP is processed within it
159-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
167+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
160168

161169
# Enable Matter OTA
162170
CONFIG_CHIP_OTA_REQUESTOR=y

samples/bluetooth/mesh/light/boards/thingy53_nrf5340_cpuapp.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
1414
CONFIG_MCUMGR_CMD_IMG_MGMT=y
1515
CONFIG_MCUMGR_CMD_OS_MGMT=y
1616

17+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
18+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
19+
# packet divided into five Bluetooth Write Commands, transmitted with the
20+
# maximum possible MTU value: 498 bytes.
21+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
22+
CONFIG_MCUMGR_BUF_SIZE=2475
23+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
24+
1725
# Enable custom SMP request to erase settings partition.
1826
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
1927
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
2028

2129
# Increase system workqueue stack size to prevent stack overflows while handling
2230
# SMP requests.
23-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
31+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
2432

2533
CONFIG_BT_L2CAP_TX_MTU=498
2634
CONFIG_BT_BUF_ACL_TX_SIZE=251
@@ -47,7 +55,7 @@ CONFIG_HW_STACK_PROTECTION=y
4755
# Bootloader configuration
4856

4957
CONFIG_BOOTLOADER_MCUBOOT=y
50-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
58+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
5159
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
5260

5361
CONFIG_IMG_MANAGER=y

samples/bluetooth/mesh/light/boards/thingy53_nrf5340_cpuapp_ns.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
1414
CONFIG_MCUMGR_CMD_IMG_MGMT=y
1515
CONFIG_MCUMGR_CMD_OS_MGMT=y
1616

17+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
18+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
19+
# packet divided into five Bluetooth Write Commands, transmitted with the
20+
# maximum possible MTU value: 498 bytes.
21+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
22+
CONFIG_MCUMGR_BUF_SIZE=2475
23+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
24+
1725
# Enable custom SMP request to erase settings partition.
1826
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
1927
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
2028

2129
# Increase system workqueue stack size to prevent stack overflows while handling
2230
# SMP requests.
23-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
31+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
2432

2533
CONFIG_BT_L2CAP_TX_MTU=498
2634
CONFIG_BT_BUF_ACL_TX_SIZE=251
@@ -47,7 +55,7 @@ CONFIG_HW_STACK_PROTECTION=y
4755
# Bootloader configuration
4856

4957
CONFIG_BOOTLOADER_MCUBOOT=y
50-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
58+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
5159
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
5260

5361
CONFIG_IMG_MANAGER=y

samples/bluetooth/mesh/light_ctrl/boards/thingy53_nrf5340_cpuapp.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
1414
CONFIG_MCUMGR_CMD_IMG_MGMT=y
1515
CONFIG_MCUMGR_CMD_OS_MGMT=y
1616

17+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
18+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
19+
# packet divided into five Bluetooth Write Commands, transmitted with the
20+
# maximum possible MTU value: 498 bytes.
21+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
22+
CONFIG_MCUMGR_BUF_SIZE=2475
23+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
24+
1725
# Enable custom SMP request to erase settings partition.
1826
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
1927
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
2028

2129
# Increase system workqueue stack size to prevent stack overflows while handling
2230
# SMP requests.
23-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
31+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
2432

2533
CONFIG_BT_L2CAP_TX_MTU=498
2634
CONFIG_BT_BUF_ACL_TX_SIZE=251
@@ -47,7 +55,7 @@ CONFIG_HW_STACK_PROTECTION=y
4755
# Bootloader configuration
4856

4957
CONFIG_BOOTLOADER_MCUBOOT=y
50-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
58+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
5159
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
5260

5361
CONFIG_IMG_MANAGER=y

samples/bluetooth/mesh/light_ctrl/boards/thingy53_nrf5340_cpuapp_ns.conf

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ CONFIG_MCUMGR_SMP_BT_CONN_PARAM_CONTROL=y
1414
CONFIG_MCUMGR_CMD_IMG_MGMT=y
1515
CONFIG_MCUMGR_CMD_OS_MGMT=y
1616

17+
# Enable MCUmgr Packet Reassembly feature over Bluetooth and its
18+
# configuration dependencies. MCUmgr buffer size is optimized to fit one SMP
19+
# packet divided into five Bluetooth Write Commands, transmitted with the
20+
# maximum possible MTU value: 498 bytes.
21+
CONFIG_MCUMGR_SMP_REASSEMBLY_BT=y
22+
CONFIG_MCUMGR_BUF_SIZE=2475
23+
CONFIG_OS_MGMT_MCUMGR_PARAMS=y
24+
1725
# Enable custom SMP request to erase settings partition.
1826
CONFIG_MCUMGR_GRP_ZEPHYR_BASIC=y
1927
CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE=y
2028

2129
# Increase system workqueue stack size to prevent stack overflows while handling
2230
# SMP requests.
23-
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2800
31+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096
2432

2533
CONFIG_BT_L2CAP_TX_MTU=498
2634
CONFIG_BT_BUF_ACL_TX_SIZE=251
@@ -47,7 +55,7 @@ CONFIG_HW_STACK_PROTECTION=y
4755
# Bootloader configuration
4856

4957
CONFIG_BOOTLOADER_MCUBOOT=y
50-
CONFIG_MCUBOOT_IMAGE_VERSION="1.0.0+0"
58+
CONFIG_MCUBOOT_IMAGE_VERSION="2.0.0+0"
5159
CONFIG_UPDATEABLE_IMAGE_NUMBER=2
5260

5361
CONFIG_IMG_MANAGER=y

0 commit comments

Comments
 (0)