aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-05-13 01:00:52 +0200
committerDario Nieuwenhuis <[email protected]>2024-05-13 01:11:49 +0200
commit09781db85d401d23bec424482062758ac63079d3 (patch)
tree7c6668f03d550db6dc373f3a46a7c82afd666d49
parente2dfdcb5091388cfbd467e9d8ac9b7d2025cc833 (diff)
embassy-usb-synopsys-otg: default vbus_detect to false.
-rw-r--r--embassy-usb-synopsys-otg/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-usb-synopsys-otg/src/lib.rs b/embassy-usb-synopsys-otg/src/lib.rs
index a84f50e5a..42cdfb6e1 100644
--- a/embassy-usb-synopsys-otg/src/lib.rs
+++ b/embassy-usb-synopsys-otg/src/lib.rs
@@ -291,7 +291,7 @@ pub struct Config {
291 291
292impl Default for Config { 292impl Default for Config {
293 fn default() -> Self { 293 fn default() -> Self {
294 Self { vbus_detection: true } 294 Self { vbus_detection: false }
295 } 295 }
296} 296}
297 297