embassy-usb-synopsys-otg: default vbus_detect to false.

This commit is contained in:
Dario Nieuwenhuis 2024-05-13 01:00:52 +02:00
parent e2dfdcb509
commit 09781db85d

View File

@ -291,7 +291,7 @@ pub struct Config {
impl Default for Config {
fn default() -> Self {
Self { vbus_detection: true }
Self { vbus_detection: false }
}
}