mirror of
https://gitlab.com/mobian1/eg25-manager.git
synced 2025-08-29 07:12:08 +02:00
Quectel advises to configure the USB autosuspend feature as: - power/control: auto - power/autosuspend_delay_ms: 3000 Futhermore, the following settings are also needed: - power/wakeup: enabled - power/persist: 0 - avoid_reset_quirk: 1
9 lines
308 B
Bash
9 lines
308 B
Bash
#!/bin/sh
|
|
|
|
# Avoid USB resets
|
|
echo "auto" > /sys/bus/usb/devices/3-1/power/control
|
|
echo "3000" > /sys/bus/usb/devices/3-1/power/autosuspend_delay_ms
|
|
echo "enabled" > /sys/bus/usb/devices/3-1/power/wakeup
|
|
echo "1" > /sys/bus/usb/devices/3-1/avoid_reset_quirk
|
|
echo "0" > /sys/bus/usb/devices/3-1/power/persist
|