Getting Started with the LPCXpresso51U68 | NXP Semiconductors

Getting Started with the LPCXpresso51U68

Last Modified: 2019-03-26 19:47:00Supports LPCXpresso51U68 for the LPC51U68 MCUs

Contents of this document

  • 1

    Plug It In
  • 2

    Get Software
  • 3

    Build, Run
  • 4

    Create

1. Plug It In

1.1 Get Started With the LPCXpresso51U68 Development Board - Demo.

Get started with the LPCXpresso51U68 Development Board – Unpacking and powering up.

Video Player is loading.
Current Time 0:00
Duration 0:55
Loaded: 18.01%
Stream Type LIVE
Remaining Time 0:55
 
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
  • en (Main), selected

1.2 Attach the USB Cable

1.3 Run the Out-of-Box Demo

Your LPCXpresso51U68 board comes preloaded with a simple program to blink the RGB LED red, approximately every second. The demo will power up and run whenever the board is powered (from either USB connector), but at this stage connect to the power J5 (target) connector.

2. Get Software

2.1 Getting Started With the MCUXpresso SDK

Want to learn more about SDK?

The MCUXpresso Software Development Kit (SDK) is complimentary and includes full source code under a permissive open-source license for all hardware abstraction and peripheral driver software.

Click below to download a pre-configured SDK release for the LPCXpresso51U68, which includes versions for MCUXpresso IDE, Keil MDK and IAR EWARM. Use LPCXpresso51U68 as the target board.

Get SDK

You can also use the online MCUXpresso web tool to create a custom SDK package for the LPCXpresso51U68 using the SDK builder.

Video Player is loading.
Current Time 0:00
Duration 2:15
Loaded: 7.39%
Stream Type LIVE
Remaining Time 2:15
 
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
  • en (Main), selected

2.2 Install your Toolchain

To set up your LPCXpresso51U68 for use with 3rd party tools, first install LPCScrypt in order to install the board’s device drivers.

Get MCUXpresso IDE

Want to use a different toolchain? No problem! The MCUXpresso SDK includes support for other tools such as IAR and Keil.

To set up your LPCXpresso51U68 for use with 3rd party tools, first install LPCScrypt in order to install the board’s device drivers. The video below shows how to use LPCScrypt to program your board’s debug probe using this utility.

Video Player is loading.
Current Time 0:00
Duration 4:08
Loaded: 4.02%
Stream Type LIVE
Remaining Time 4:08
 
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
  • en (Main), selected

2.3 MCUXpresso Config Tools

The MCUXpresso Config Tool is an integrated suite of configuration tools that guides users in creating new MCUXpresso SDK projects, and provides pin and clock tools to generate initialization C code for custom board support.

Get MCUXpresso Config Tools

2.4 Serial Terminal

Not sure how to use a terminal application? Try one of these tutorials: Tera Term Tutorial, PuTTY Tutorial.

3. Build, Run

3.1 Explore the MCUXpresso SDK Example Code

The MCUXpresso SDK comes with a long list of example applications code. To see what's available, browse to the SDK boards folder of your SDK installation and select LPCXpresso51U68.

1<sdk_install_directory>/boards/LPCXpresso51U68</sdk_install_directory>

To learn more about specific example code, open the readme.txt file in an example’s directory.

3.2 Build, Run

If one or more of the demo application or driver examples sounds interesting, you're probably wanting to know how you can build and debug yourself. The Getting Started with SDK for LPC51U68 guide provides easy, step-by-step instructions on how to configure, build, and debug demos for all toolchains supported by the SDK.

Use the guide below to learn how to open, build and debug an example application using the MCUXpresso IDE.

Video Player is loading.
Current Time 0:00
Duration 3:20
Loaded: 4.98%
Stream Type LIVE
Remaining Time 3:20
 
1x
  • Chapters
  • descriptions off, selected
  • captions off, selected
  • en (Main), selected

Using a different toolchain?

4. Create

4.1 Get SDK Project Generator

Let's create our own project and make a simple SDK-based application. NXP provides an intuitive, simple project generation utility that allows creation of custom projects based on the Kinetis SDK.

Get Project Generator

4.2 Run the SDK Project Generator

After extracting the ZIP file, open the utility by clicking on the KSDK_Project_Generator executable for your computer's operating system. Point the tool to your SDK installation path, name your project, and select the board that it uses as a reference. Click on the Quick Generate button to finish.

4.3 Open Your Project

Your new project will be located in.

1<sdk_install_directory>/examples/frdmk64/user_apps</sdk_install_directory>

Open the project in your toolchain of choice by using the same process described in section 3.2.

4.4 Write Some Code

Now, let's make our new project do something other than spin in an infinite loop. The SDK examples provide a board support package (BSP) to do various things specific to the board, including macros and definitions for items such as LEDs, switches and peripheral instances. To keep things simple, lets make the LED blink using the BSP macros.

Update the main() function in your project's main.c file with the following code:

123456789101112131415161718192021volatile int delay;
// Configure board specific pin muxing
BOARD_InitPins();

// Configure clock source
BOARD_BootClockRUN();

// Initialize the UART terminal
BOARD_InitDebugConsole();

PRINTF("\r\nRunning the myProject project.\n");

// Enable GPIO port for the red LED
CLOCK_EnableClock(kCLOCK_PortE);
PORT_SetPinMux(BOARD_LED_RED_GPIO_PORT, BOARD_LED_RED_GPIO_PIN, kPORT_MuxAsGpio);
LED_RED_INIT(LOGIC_LED_OFF);
for (;;){
  LED_RED_TOGGLE();
  delay = 5000000;
  while(delay--);
}

4.5 Build, Download, Run

With the changes made to your main() function, build your application. Once the build is complete, download the application to your board.

If you need help figuring out how to build, download or run an application, reference your tool-specific guide from section 3.2.

4.6 Success

With the application downloaded, you will see the FRDM-KE15Z's red LED blinking. You can also view terminal output using PRINTF.