LPCXPRESSO54114

Overview

The LPCXpresso54114 board has been developed by NXP to enable evaluation of and prototyping with the low-power LPC54110 family of MCUs. LPCXpresso* is a low-cost development platform available from NXP supporting NXP’s ARM-based microcontrollers. LPCXpresso is an end-to-end solution enabling embedded engineers to develop their applications from initial evaluation to final production.

Hardware

  • LPC54114 dual-core (M4F and dual M0) MCU running at up to 100 MHz

  • On-board high-speed USB based debug probe with CMSIS-DAP and J-Link protocol support, can debug the on-board LPC54114 or an external target

  • External debug probe option

  • Tri-color LED, target Reset, ISP & interrupt/user buttons for easy testing of software functionality

  • Expansion options based on Arduino UNO and Pmod™, plus additional expansion port pins

  • On-board 1.8 V and 3.3 V regulators plus external power supply option

  • 8 Mb Macronix MX25R SPI flash

  • Built-in MCU power consumption and supply voltage measurement

  • UART, I²C and SPI port bridging from LPC54114 target to USB via the on-board debug probe

  • FTDI UART connector

For more information about the LPC54114 SoC and LPCXPRESSO54114 board:

Supported Features

The lpcxpresso54114 board supports the hardware features listed below.

on-chip / on-board
Feature integrated in the SoC / present on the board.
2 / 2
Number of instances that are enabled / disabled.
Click on the label to see the first instance of this feature in the board/SoC DTS files.
vnd,foo
Compatible string for the Devicetree binding matching the feature.
Click on the link to view the binding documentation.
lpcxpresso54114
/

Type

Location

Description

Compatible

CPU

on-chip

ARM Cortex-M0+ CPU1

arm,cortex-m0+

ARM architecture

on-chip

LPC Flexcomm node5

nxp,lpc-flexcomm

Clock control

on-chip

LPC SYSCON & CLKCTL IP node1

nxp,lpc-syscon

Flash controller

on-chip

NXP (In-Application Programming) flash memory controller for the lpc54xxx family1

nxp,iap-fmc54

GPIO & Headers

on-chip

LPC GPIO1

nxp,lpc-gpio

on-chip

LPC GPIO port device2

nxp,lpc-gpio-port

I2C

on-chip

LPC I2C1

nxp,lpc-i2c

Interrupt controller

on-chip

ARMv6-M NVIC (Nested Vectored Interrupt Controller) controller1

arm,v6m-nvic

on-chip

NXP Pin interrupt and pattern match engine (PINT)1

nxp,pint

IPM

on-chip

LPC MAILBOX1

nxp,lpc-mailbox

LED

on-board

Group of GPIO-controlled LEDs1

gpio-leds

MTD

on-chip

Flash node1

soc-nv-flash

on-board

Fixed partitions of a flash (or other non-volatile storage) memory1

fixed-partitions

Pin control

on-chip

LPC I/O Pin Configuration (IOCON)1

nxp,lpc-iocon

on-chip

LPC pinctrl node1

nxp,lpc-iocon-pinctrl

Reset controller

on-chip

LPC SYSCON Peripheral reset controller1

nxp,lpc-syscon-reset

Serial controller

on-chip

LPC USART1

nxp,lpc-usart

SPI

on-chip

NXP LPC SPI controller1

nxp,lpc-spi

SRAM

on-chip

Generic on-chip SRAM description2

mmio-sram

Timer

on-chip

ARMv6-M System Tick1

arm,armv6m-systick

Connections and IOs

The LPC54114 SoC has IOCON registers, which can be used to configure the functionality of a pin.

Name

Function

Usage

PIO0_0

USART

USART RX

PIO0_1

USART

USART TX

PIO0_18

SPI

SPI MISO

PIO0_19

SPI

SPI SCK

PIO0_20

SPI

SPI MOSI

PIO0_25

I2C

I2C SCL

PIO0_26

I2C

I2C SDA

PIO0_29

GPIO

RED LED

PIO1_1

SPI

SPI SSEL2

PIO1_9

GPIO

BLUE_LED

PIO1_10

GPIO

GREEN LED

System Clock

The LPC54114 SoC is configured to use the internal FRO at 48MHz as a source for the system clock. Other sources for the system clock are provided in the SOC, depending on your system requirements.

Serial Port

The LPC54114 SoC has 8 FLEXCOMM interfaces for serial communication. One is configured as USART for the console and the remaining are not used.

Programming and Debugging

Build and flash applications as usual (see Building an Application and Run an Application for more details).

Configuring a Debug Probe

A debug probe is used for both flashing and debugging the board. This board is configured by default to use the LPC-Link2 CMSIS-DAP Onboard Debug Probe, however the pyOCD Debug Host Tools do not support this probe so you must reconfigure the board for one of the following debug probes instead.

Configuring a Console

Regardless of your choice in debug probe, we will use the LPC-Link2 microcontroller as a usb-to-serial adapter for the serial console.

Connect a USB cable from your PC to J5

Use the following settings with your serial terminal of choice (minicom, putty, etc.):

  • Speed: 115200

  • Data: 8 bits

  • Parity: None

  • Stop bits: 1

Flashing

Here is an example for the Hello World application.

# From the root of the zephyr repository
west build -b lpcxpresso54114/lpc54114/m4 samples/hello_world
west flash

Open a serial terminal, reset the board (press the SW4 button), and you should see the following message in the terminal:

***** Booting Zephyr OS v1.14.0-rc1 *****
Hello World! lpcxpresso54114_m4

Debugging

Here is an example for the Hello World application.

# From the root of the zephyr repository
west build -b lpcxpresso54114/lpc54114/m4 samples/hello_world
west debug

Open a serial terminal, step through the application in your debugger, and you should see the following message in the terminal:

***** Booting Zephyr OS v1.14.0-rc1 *****
Hello World! lpcxpresso54114_m4

Support Resources for Zephyr