yzm157

Results 10 comments of yzm157

希望早日添加,现在下载是慢的一塌糊涂

> Fill out the Bug template with the required information or you will get no assistance. @pelwell thank you for your reply。 I use the Raspberry Pi 4B as an...

> > What happens if you change the code from: > > ``` > if (sta_info_le.rssi[i] == 0 || > sta_info_le.rx_lastpkt_rssi[i] == 0) > continue; > ``` > > to:...

@pelwell The code did not execute this branch. ``` brcmf_err("test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state) = %d\n", test_bit(BRCMF_VIF_STATUS_CONNECTED, &ifp->vif->sme_state)); if (count_rssi) { sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL); sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG); sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL); sinfo->filled |= BIT_ULL(NL80211_STA_INFO_CHAIN_SIGNAL_AVG);...

@pelwell Is there any progress on this issue?

If using glib main loop, can't initChipStack in GUI application, such as Qt/Gtk

> @yzm157 what do you mean "can't initChipStack in GUI application"? There is a deadlock, segfault, etc. Do you got any logs? I created an application using pyqt5, failed to...

@arkq Below is the gdb log: ``` GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1 Copyright (C) 2022 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free...

@arkq Looks like it's caused by mutex lock, could removing the lock cause other problems? ``` CHIP_ERROR PlatformManagerImpl::_InitChipStack() { #if CHIP_DEVICE_CONFIG_WITH_GLIB_MAIN_LOOP mGLibMainLoop = g_main_loop_new(nullptr, FALSE); mGLibMainLoopThread = g_thread_new("gmain-matter", GLibMainLoopThread, mGLibMainLoop);...

> One thing you can check is whether the `[](void *) { return G_SOURCE_REMOVE; }` is executed, and if yes, on which thread - simply add `ChipLogError` into that lambda....