Skip to content

Commit e6e9614

Browse files
[Silabs] Adds debug prints for rs911x platform for better understanding (project-chip#37102)
* Improve error logging for WiFi data transmission failures in low_level_output * Adds SLAAC IPv6 print * Revert line for define check * Adds missing includes * Update status initialization * Revert "Update status initialization" This reverts commit f8f8377. * Adds change based on comments * Fix compilation --------- Co-authored-by: Rohan S <3526930+brosahay@users.noreply.github.com>
1 parent 65c861d commit e6e9614

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/platform/silabs/wifi/lwip-support/ethernetif.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -334,8 +334,7 @@ static err_t low_level_output(struct netif * netif, struct pbuf * p)
334334
{
335335
#if (SLI_SI91X_MCU_INTERFACE | EXP_BOARD)
336336
UNUSED_PARAMETER(netif);
337-
sl_status_t status;
338-
status = sl_wifi_send_raw_data_frame(SL_WIFI_CLIENT_INTERFACE, (uint8_t *) p->payload, p->len);
337+
sl_status_t status = sl_wifi_send_raw_data_frame(SL_WIFI_CLIENT_INTERFACE, (uint8_t *) p->payload, p->len);
339338
if (status != SL_STATUS_OK)
340339
{
341340
return ERR_IF;
@@ -367,14 +366,14 @@ static err_t low_level_output(struct netif * netif, struct pbuf * p)
367366
#endif
368367
if ((netif->flags & (NETIF_FLAG_LINK_UP | NETIF_FLAG_UP)) != (NETIF_FLAG_LINK_UP | NETIF_FLAG_UP))
369368
{
370-
ChipLogProgress(DeviceLayer, "EN-RSI:NOT UP");
369+
ChipLogError(DeviceLayer, "EN-RSI:NOT UP");
371370
xSemaphoreGive(ethout_sem);
372371
return ERR_IF;
373372
}
374373
packet = wfx_rsi_alloc_pkt();
375374
if (!packet)
376375
{
377-
ChipLogProgress(DeviceLayer, "EN-RSI:No buf");
376+
ChipLogError(DeviceLayer, "EN-RSI:No buf");
378377
xSemaphoreGive(ethout_sem);
379378
return ERR_IF;
380379
}
@@ -402,9 +401,10 @@ static err_t low_level_output(struct netif * netif, struct pbuf * p)
402401
/* forward the generated packet to RSI to
403402
* send the data over wifi network
404403
*/
405-
if (wfx_rsi_send_data(packet, datalength))
404+
int32_t status = wfx_rsi_send_data(packet, datalength);
405+
if (status != 0)
406406
{
407-
ChipLogProgress(DeviceLayer, "*ERR*EN-RSI:Send fail");
407+
ChipLogError(DeviceLayer, "*ERR*EN-RSI:Send fail: %ld", status);
408408
xSemaphoreGive(ethout_sem);
409409
return ERR_IF;
410410
}

src/platform/silabs/wifi/rs911x/WifiInterfaceImpl.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#include "silabs_utils.h"
2020
#include "sl_status.h"
2121
#include <cmsis_os2.h>
22+
#include <inet/IPAddress.h>
2223
#include <lib/support/CHIPMem.h>
2324
#include <lib/support/CHIPMemString.h>
2425
#include <lib/support/CodeUtils.h>
@@ -502,6 +503,9 @@ void HandleDHCPPolling(void)
502503
*/
503504
if ((ip6_addr_ispreferred(netif_ip6_addr_state(sta_netif, 0))) && !HasNotifiedIPv6Change())
504505
{
506+
char addrStr[chip::Inet::IPAddress::kMaxStringLength] = { 0 };
507+
VerifyOrReturn(ip6addr_ntoa_r(netif_ip6_addr(sta_netif, 0), addrStr, sizeof(addrStr)) != nullptr);
508+
ChipLogProgress(DeviceLayer, "SLAAC OK: linklocal addr: %s", addrStr);
505509
NotifyIPv6Change(true);
506510
WifiPlatformEvent event = WifiPlatformEvent::kStationDhcpDone;
507511
PostWifiPlatformEvent(event);

0 commit comments

Comments
 (0)