Getting Started with TWR-KE18F Board

Last Modified: 2022-12-29 14:50:00Supports Kinetis KE18 MCU Tower System Module

Contents of this document

  • 1

    Plug It In
  • 2

    Get Software
  • 3

    Build, Run
  • 4

    Create

1. Plug It In

Let's take your TWR-KE18F for a test drive. You have the choice of watching the sequence in a short video or following the detailed actions list below.

1.1 Attach the USB Cable

TWR-KE18F Getting Started Image

TWR-KE18F Getting Started Image

1.2 Run the Out-of-Box Demo

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 red or green LEDs gradually illuminate based on the degree of tilt on the X- and Y-axis.

TWR-KE18F Getting Started Image

TWR-KE18F Getting Started Image

2. Get Software

2.1 Installing software for the TWR-KE18F

2.2 Jump Start Your Design with the Kinetis SDK

The Kinetis 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 KE18 SDK package.

Get SDK

2.3 Install Your Toolchain

NXP offers a complimentary toolchain called Kinetis Design Studio (KDS)

nxp

Get Kinetis Design Studio

Want to use a different toolchain?

No problem! The Kinetis SDK includes support for other tools such as IAR , Keil and Command-line GCC .

GS Tool Logos

2.4 Tool Update

If using Kinetis Design Studio or Arm GCC tool chains, the latest Segger J-Link software tools need to be downloaded and installed. This update is required for those tools to support the KE1x family. Ensure you install this update after installing the IDE of your choice.

First, download the latest "Software and documentation pack" from J-Link / J-Trace Downloads .

Then Install the software and at the end of the installation, there will be a dialog box asking to update installed IDEs. Make sure the KDS 3.2.0 IDE is checked if using Kinetis Design Studio.

2.5 PC Configuration

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.

FRDM-KE18F Getting Started Image

Download Driver

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 115200 baud rate, 8 data bits, no parity and 1 stop bit. To determine the port number of the TWR-KE18F'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:

Tera Term Tutorial, PuTTY Tutorial

3. Build, Run

3.1 Build and Run SDK Demos on the TWR-KE18F

3.2 Explore the SDK Example Code

The Kinetis 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 TWR-KE18F <sdk_install_directory>/boards/twrke18f</sdk_install_directory>

To learn more about demo applications or driver examples, open the Kinetis SDK v.2.0 API Reference Manual, located in <sdk_install_directory>/docs.</sdk_install_directory>

3.3 Build, Run and Debug SDK Examples

3.4 Using a different toolchain?

4. Create

NXP provides a project cloner tool which allows you to copy an existing demo to use as a base for your own development, keeping the original demo app resources for reference. Click on the link below to get the project generator tool.

Create an Application for the TWR-KE18F

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.

FRDM-KE15Z Getting Started Image

4.3 Open Your Project

Your new project will be located in <sdk_install_directory>/boards/towerke18f/user_apps/myProject/kds. 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:

volatile 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 TWR-KE18F's red LED blinking. You can also view terminal output using PRINTF.

Tera Term Tutorial

Tera Term Tutorial

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.

  1. Download Tera Term from SourceForge. After the download, run the installer and then return to this webpage to continue
  2. Download

  3. Launch Tera Term. The first time it launches, it will show you the following dialog. Select the serial option. Assuming your board is plugged in, there should be a COM port automatically populated in the list
  4. Tera-Term-Connection
  5. Configure the serial port settings (using the COM port number identified earlier) to 115200 baud rate, 8 data bits, no parity and 1 stop bit. To do this, go to Setup → Serial Port and change the settings
  6. Verify that the connection is open. If connected, Tera Term will show something like below in it's title bar
  7. Tera-Term-Console

    You're ready to go

PuTTY Tutorial

Putty Tutorial

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.

  1. Download PuTTY using the button below. After the download, run the installer and then return to this webpage to continue
  2. Download

  3. Launch PuTTY by either double clicking on the *.exe file you downloaded or from the Start menu, depending on the type of download you selected
  4. Configure In the window that launches, select the Serial radio button and enter the COM port number that you determined earlier. Also enter the baud rate, in this case 115200
  5. PUTTY-Configuration
  6. Click Open to open the serial connection. Assuming the board is connected and you entered the correct COM port, the terminal window will open. If the configuration is not correct, PuTTY will alert you
  7. You're ready to go.

Support

Forums

Connect with other engineers and get expert advice on designing with the BOARD-ID evaluation board using our community sites.

  • Community