1
Plug It In!2
Get Software3
Build, Run4
CreateSign in to save your progress. Don't have an account? Create one.
Let's take your FRDM-KE16Z for a test drive! You have the choice of watching the sequence in a short video or following the detailed actions list below.
Something went wrong! Please try again.
This bubble demo leverages the on board accelerometer. When the board is flat, the RGB LED is turned off, and when the board is tilted, the blue or red LEDs gradually illuminate based on the degree of tilt on the X- and Y-axis.
Something went wrong! Please try again.
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 the KE16Z SDK package.
Something went wrong! Please try again.
NXP offers a complimentary toolchain called MCUXpresso IDE.
Want to use a different toolchain?
The MCUXpresso SDK includes support for other tools such as IAR, Keil, and command-line GCC.
Something went wrong! Please try again.
Many of the example applications output data over the MCU UART so you'll want to make sure that the driver for the board's virtual COM port is installed. Before you run the driver installer, you MUST have the board plugged in to your PC.
With the serial port driver installed, run your favorite terminal application to view the serial output from the MCU's UART. Configure the terminal to 115,200 baud rate, 8 data bits, no parity, and 1 stop bit. To determine the port number of the FRDM-KE16Z's virtual COM port, open the device manager and look under the "Ports" group.
Not sure how to use a terminal application? Try one of these tutorials:
Something went wrong! Please try again.
Tera Term is a very popular open source terminal emulation application. This program can be used to display information sent from your NXP development platform's virtual serial port.
Something went wrong! Please try again.
PuTTY is a popular terminal emulation application. This program can be used to display information sent from your NXP development platform's virtual serial port.
Something went wrong! Please try again.
The MCUXpresso SDK comes with a long list of demo applications and driver examples. To see what's available, browse to the SDK boards folder of your SDK installation and select your board, the
FRDM-KE16Z (
Something went wrong! Please try again.
If one or more of the demo applications or driver examples sounds interesting, you're probably wanting to know how you can build and debug yourself. The Getting Started with MCUXpresso SDK guide provides easy, step-by-step instructions on how to configure, build, and debug demos for all toolchains supported by the SDK.
Something went wrong! Please try again.
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 MCUXpresso SDK.
Something went wrong! Please try again.
Open the utility by clicking on the MCUXpresso Config Tools 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 Finish.
Something went wrong! Please try again.
Open the project in your toolchain of choice by using the same process described in section 3.2.
Something went wrong! Please try again.
Now, let's make our new project do something other than spin in an infinite loop.
Something went wrong! Please try again.
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.
Something went wrong! Please try again.
With the application downloaded, you will see the FRDM-KE16Z's red LED blinking. You can also view terminal output using PRINTF.
Something went wrong! Please try again.