diff options
| author | hathach <[email protected]> | 2019-09-01 16:15:23 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-09-01 16:15:23 +0700 |
| commit | 30678099577f60aa36c9ab40f7eacd9fbf844873 (patch) | |
| tree | 6b4c59db89ebb85009d2ab21964d4e9088494297 /hw | |
| parent | 403662a1d6b49e32cbf1adb4a05a1b3ac8982083 (diff) | |
adding lpc54xxx to dcd, able to go through enumeration
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/bsp/lpcxpresso54114/lpcxpresso54114.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/hw/bsp/lpcxpresso54114/lpcxpresso54114.c b/hw/bsp/lpcxpresso54114/lpcxpresso54114.c index 9da1c6e5f..090c1a95e 100644 --- a/hw/bsp/lpcxpresso54114/lpcxpresso54114.c +++ b/hw/bsp/lpcxpresso54114/lpcxpresso54114.c @@ -114,18 +114,18 @@ void board_init(void) GPIO_PinInit(GPIO, BUTTON_PORT, BUTTON_PIN, &button_config); // USB -// const uint32_t port1_pin6_config = ( -// IOCON_PIO_FUNC7 | /* Pin is configured as USB0_VBUS */ -// IOCON_PIO_MODE_INACT | /* No addition pin function */ -// IOCON_PIO_INV_DI | /* Input function is not inverted */ -// IOCON_PIO_DIGITAL_EN | /* Enables digital function */ -// IOCON_PIO_INPFILT_OFF | /* Input filter disabled */ -// IOCON_PIO_OPENDRAIN_DI /* Open drain is disabled */ -// ); -// IOCON_PinMuxSet(IOCON, 1, 6, port1_pin6_config); /* PORT1 PIN6 (coords: 26) is configured as USB0_VBUS */ -// -// POWER_DisablePD(kPDRUNCFG_PD_USB0_PHY); /*Turn on USB Phy */ -// CLOCK_EnableUsbfs0Clock(kCLOCK_UsbSrcFro, CLOCK_GetFreq(kCLOCK_FroHf)); /* enable USB IP clock */ + const uint32_t port1_pin6_config = ( + IOCON_PIO_FUNC7 | /* Pin is configured as USB0_VBUS */ + IOCON_PIO_MODE_INACT | /* No addition pin function */ + IOCON_PIO_INV_DI | /* Input function is not inverted */ + IOCON_PIO_DIGITAL_EN | /* Enables digital function */ + IOCON_PIO_INPFILT_OFF | /* Input filter disabled */ + IOCON_PIO_OPENDRAIN_DI /* Open drain is disabled */ + ); + IOCON_PinMuxSet(IOCON, 1, 6, port1_pin6_config); /* PORT1 PIN6 (coords: 26) is configured as USB0_VBUS */ + + POWER_DisablePD(kPDRUNCFG_PD_USB0_PHY); /*Turn on USB Phy */ + CLOCK_EnableUsbfs0Clock(kCLOCK_UsbSrcFro, CLOCK_GetFreq(kCLOCK_FroHf)); /* enable USB IP clock */ } //--------------------------------------------------------------------+ |
