Merge branch 'bugfix/usb_device_struct_cleanup_v4.3' into 'release/v4.3'

USB: Cleanup device side struct and fix incorrect DM pulldown configuration (v4.3)

See merge request espressif/esp-idf!17103
This commit is contained in:
Michael (XIAO Xufeng)
2022-02-12 20:53:02 +00:00
2 changed files with 74 additions and 75 deletions

View File

@@ -38,6 +38,6 @@ static inline void usb_ll_int_phy_pullup_conf(bool dp_pu, bool dp_pd, bool dm_pu
conf.dp_pullup = dp_pu;
conf.dp_pulldown = dp_pd;
conf.dm_pullup = dm_pu;
conf.dm_pulldown = dp_pd;
conf.dm_pulldown = dm_pd;
USB_WRAP.otg_conf = conf;
}