Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fix for NanoPC-T6 #111

Merged
merged 3 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,10 @@ UsbPortPowerEnable (
GpioPinWrite (4, GPIO_PIN_PB0, TRUE);
GpioPinSetDirection (4, GPIO_PIN_PB0, GPIO_PIN_OUTPUT);

/* Set GPIO4 PC6 output high to power the 4G/LTE module */
GpioPinWrite (4, GPIO_PIN_PC6, TRUE);
GpioPinSetDirection (4, GPIO_PIN_PC6, GPIO_PIN_OUTPUT);

/* Set GPIO1 PD2 (TYPEC5V_PWREN) output high to power the type-c port */
GpioPinWrite (1, GPIO_PIN_PD2, TRUE);
GpioPinSetDirection (1, GPIO_PIN_PD2, GPIO_PIN_OUTPUT);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@
$(PLATFORM_DIRECTORY)/AcpiTables/AcpiTables.inf

# Splash screen logo
MdeModulePkg/Logo/LogoDxe.inf
$(VENDOR_DIRECTORY)/Drivers/LogoDxe/LogoDxe.inf
Loading