Skip to content

Commit 4887276

Browse files
authored
Merge pull request #94 from facchinm/0_3_hotfixes
Hotfixes
2 parents 99504de + 252d801 commit 4887276

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

libraries/SocketWrapper/WiFi.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class WiFiClass: public NetworkInterface
6868
enable_dhcpv4_server(ap_iface);
6969

7070
if (blocking) {
71-
net_mgmt_event_wait_on_iface(sta_iface, NET_EVENT_WIFI_AP_ENABLE_RESULT, NULL, NULL, NULL, K_FOREVER);
71+
net_mgmt_event_wait_on_iface(ap_iface, NET_EVENT_WIFI_AP_ENABLE_RESULT, NULL, NULL, NULL, K_FOREVER);
7272
}
7373

7474
return true;

loader/llext_exports.c

+4
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ FORCE_EXPORT_SYM(usbd_enable);
167167
FORCE_EXPORT_SYM(usbd_disable);
168168
#endif
169169

170+
#if defined(CONFIG_SHARED_MULTI_HEAP)
171+
FORCE_EXPORT_SYM(shared_multi_heap_alloc);
172+
#endif
173+
170174
EXPORT_SYMBOL(k_timer_init);
171175
EXPORT_SYMBOL(k_fatal_halt);
172176
EXPORT_SYMBOL(k_work_schedule);

platform.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ tools.pyocd.path=
252252
tools.pyocd.cmd=pyocd
253253
tools.pyocd.upload.params.verbose=
254254
tools.pyocd.upload.params.quiet=
255-
tools.pyocd.upload.pattern="{cmd}" load --target {upload.target} {build.path}/{build.project_name}.${upload.extension}@{upload.address}
255+
tools.pyocd.upload.pattern="{cmd}" load --target {upload.target} {build.path}/{build.project_name}.{upload.extension}@{upload.address}
256256

257257
tools.pyocd.bootloader.params.verbose=
258258
tools.pyocd.bootloader.params.quiet=

0 commit comments

Comments
 (0)