Wifi keeps disconnecting. Using rtw_8822ce

The rtl_8822ce driver serves wi-fi and bluetooth, and I think they conflict. Create simple udev rule helps me, like this:

su -
cat << EOF > /etc/udev/rules.d/10-bluetooth-autosuspend.rules
ACTION==“add”
, ATTR{idProduct}==“c822”
, ATTR{idVendor}==“0bda”
, ATTR{power/autosuspend_delay_ms}=“-1”
, ATTR{power/control}=“on”
EOF

Everything is working properly now

1 Like