Skip to content
Snippets Groups Projects
Commit 793c8b78 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

arch/arm/src/lpc54: Missed a change in the last commit

parent 321a7a64
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,7 @@
#define LPC43_USBDEV_DCCPARAMS_OFFSET 0x0124 /* Device controller capability parameters */
/* Device/host/OTG operational registers */
#define LPC43_USBOTG_HCOR_OFFSET 0x0140 /* Offset to EHCI Host Controller Operational Registers */
#define LPC43_USBOTG_USBCMD_OFFSET 0x0140 /* USB command (both) */
#define LPC43_USBOTG_USBSTS_OFFSET 0x0144 /* USB status (both) */
......
......@@ -163,7 +163,7 @@
#define SDMMC_CLKDIV0_SHIFT (0) /* Bits 0-7: Clock divider 0 value */
#define SDMMC_CLKDIV0_MASK (255 << SDMMC_CLKDIV0_SHIFT)
# define SDMMC_CLKDIV0_MASK(n) ((((n) + 1) >> 1) << SDMMC_CLKDIV0_SHIFT)
# define SDMMC_CLKDIV0(n) ((((n) + 1) >> 1) << SDMMC_CLKDIV0_SHIFT)
/* Bits 8-31: Reserved */
/* Clock enable register CLKENA */
......
......@@ -68,7 +68,8 @@ STATUS
There is still no support for the Accelerometer, SPIFI, SD card, Ethernet,
or USB. There is a partial SPI driver, but no on-board SPI devices to
test it.
test it. The SD/MMC interface is essentially the same as on the LPC43xx
and there is an unverified leverage in place for that.
Configurations
==============
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment