Skip to content

Commit 0964803

Browse files
committed
config: enable legacy by default
This should improve the onboarding experience for new users.
1 parent ae21bcd commit 0964803

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
timeout_secs = 10
1111

1212
# Enable legacy USB mode (some HeadUnits/cars needs this enabled for compatibility)
13-
legacy = false
13+
legacy = true
1414

1515
# Enable wired USB connection to phone (VID:PID should be specified, zero is wildcard and can be used for single or both fields)
1616
# you can obtain it e.g. using `lsusb` after connecting phone,

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ impl Default for AppConfig {
150150
debug: false,
151151
hexdump_level: HexdumpLevel::Disabled,
152152
disable_console_debug: false,
153-
legacy: false,
153+
legacy: true,
154154
connect: None,
155155
logfile: "/var/log/aa-proxy-rs.log".into(),
156156
stats_interval: 0,

0 commit comments

Comments
 (0)