1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-10-15 11:26:40 +03:00

UOTGVBOF is now active high

This commit is contained in:
Fede85
2013-05-20 19:21:23 +02:00
parent 76fd163a5f
commit 4486a922fc
3 changed files with 38 additions and 33 deletions

View File

@@ -155,7 +155,10 @@ void UHD_Init(void)
// Signal is active low (because all SAM3X Pins are high after startup)
// Hence VBOF must be low after connection request to power up the remote device
uhd_set_vbof_active_low();
// uhd_set_vbof_active_low();
// According to the Arduino Due circuit the VBOF must be active high to power up the remote device
uhd_set_vbof_active_high();
otg_enable_pad();
otg_enable();