Simplify configuration instructions in DOCS.md

Removed unnecessary configuration options for audio, USB, and Ethernet to streamline the setup instructions.
This commit is contained in:
Alexandre
2026-03-01 10:08:28 +01:00
committed by GitHub
parent a5509f5efa
commit 14fc8c65a1

View File

@@ -275,19 +275,15 @@ sudo nano /boot/firmware/config.txt
Paste in: Paste in:
```ini ```ini
# Enable audio and USB optimizations
dtparam=audio=off # Disable the default onboard audio to prevent conflicts dtparam=audio=off # Disable the default onboard audio to prevent conflicts
dtoverlay=disable-bt # Disable onboard Bluetooth to reduce USB bandwidth usage dtoverlay=disable-bt # Disable onboard Bluetooth to reduce USB bandwidth usage
dtoverlay=disable-wifi # Disable onboard wifi dtoverlay=disable-wifi # Disable onboard wifi
# Limit Ethernet to 100 Mbps (disable Gigabit Ethernet)
dtparam=eth_max_speed=100 start_x=0
# USB optimizations gpu_mem=16
dwc_otg.fiq_fix_enable=1 # Enable FIQ (Fast Interrupt) handling for improved USB performance camera_auto_detect=0
max_usb_current=1 # Increase the available USB current (required if Scarlett is powered over USB) display_auto_detect=0
# Additional audio settings (for low-latency operation) hdmi_blanking=2 # Disable HDMI (save power and reduce interference)
avoid_pwm_pll=1 # Use a more stable PLL for the audio clock
# Optional: HDMI and other settings can be turned off if not needed
hdmi_blanking=1 # Disable HDMI (save power and reduce interference)
``` ```
- **Disable useless services** - **Disable useless services**