masbug

Results 11 comments of masbug

Actually, the referenced commit was an oversight on my part and IMHO should be reverted. There are three fields in the normalized object: - virtual_path ("id" type of path) -...

I have the same problem as @videostormdev. iw wlan0 scan hangs but newer version outputs an error. This is the debug output using iw 5.19: ```bash # iw --debug wlan0...

I found the cause of "netlink error code 1". 1 is returned from rtw_ops_hw_scan in mac80211.c: ``` static int rtw_ops_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_scan_request *req) { struct...

I'm pretty sure it's not. I really like YAS because it is very fast and easy to add to the code. I would hate to use another json lib just...

I parse json with YAS. I use it for already defined structures not for free-formed json. It's sort of a way faster alternative to protobuf and less cumbersome to use.

Same issue on Windows 10. Commit [e42a7f9714c6d9138a5cb76a079d04157a42c657](https://github.com/espressif/esp-usb-bridge/tree/e42a7f9714c6d9138a5cb76a079d04157a42c657) doesn't compile. dcd_esp32sx.c is missing USB_OUT_EP_NUM. You need to add this to compile: ``` #include "soc/usb_reg.h" #include "soc/usb_struct.h" #include "soc/usb_wrap_struct.h" #ifndef USB_OUT_EP_NUM #define...

I don't think it should be opt in. It fixes a bug. If 0 isn't defined as an enum value then it will still work as before. ``` // this...

It already works for both cases. See this test https://godbolt.org/z/nEKoP6j4n ```c++ #include #include enum class E1 : int { None = 0, Flag1 = 1