/* P2_5 USB1_VBUS, MUST CONFIGURE THIS SIGNAL FOR USB1 NORMAL OPERATION */ Chip_SCU_PinMux(0x2, 5, (MD_PLN | MD_EZI | MD_ZI), FUNC2); /* P9_5 USB1_PPWR, USB1 VBus function */ Chip_SCU_PinMux(0x9, 5, (MD_PUP | MD_EZI), FUNC2); /* P2_6 USB1_PWR_EN, USB1 VBus function */ Chip_SCU_PinMux(0x2, 6, (MD_PUP | MD_EZI), FUNC4); /* GPIO5[6] = USB1_PWR_EN */ Chip_GPIO_WriteDirBit(LPC_GPIO_PORT, 5, 6, true); /* GPIO5[6] output high */ Chip_GPIO_WritePortBit(LPC_GPIO_PORT, 5, 6, true); |