I’ve owned this printer (version 2.1.9) for a year now; it has numerous flaws that the manufacturer ought to fix or optimize, and it’s complex to use—though with a bit of perseverance, you can get it working (or not)
: it sometimes has a mind of its own. The printer’s overall configuration isn’t inherently stable.
Off Topic, In short—I won’t go into the details of all the problems:
I completely removed the feeder system; even though I’d managed to make it stable and quiet, it proved too problematic with TPU and other filaments. Another issue: excessive CPU (during printing above 3days) usage was causing print failures (the log showed a cutoff resembling a power outage), linked to incorrect screen and Wi-Fi settings (at least in my opinion).
Topic Wi-Fi .
My research led me to conclude that the factory Wi-Fi settings were wrong (access point enable , powersave not stable on realtek etc.); so, I removed that configuration, disabled power management for the Realtek chip, and turned off the connection restart function in the Sovol script (which could be an issue if the connection drops on an unstable network, but never mind that). For me, it works.
To eliminate processor overload ==>>
To fix screen in this file/etc/X11/xorg.conf.d$ more 01-dbbian-defaults.conf
replace Driver "fbdev" by Driver "modesetting"
to fix Wifi:
Disable standalone Wi-Fi access point
sudo systemctl disable --now hostapd.service
To get the Wi-Fi working ==>>
Disable powersave NetworkManager:
sudo nmcli connection modify <Your_SSID> wifi.powersave 2
sudo nmcli connection modify <Your_SSID> wifi.bgscan ""
and in this file /boot/script/connect_wifi.sh
between this lines
sleep 20
while [ 1 ]; do
insert exit 0 to bypass to reconnect loop
because at home, I was losing the connection every 5 to 20 seconds.
I kept the original antenna; the network must be 2.4GHz and WPA2.
hoping this helps.