Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide

Size: px
Start display at page:

Download "Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide"

Transcription

1 Freescale Semiconductor, Inc. KSDKKL03UG User s Guide Rev , 09/2014 Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide 1 Introduction This document describes the hardware and software environment setup for the Kinetis SDK (KSDK). It also explains how to build and run demo applications provided in the KSDK release package. 2 Overview 2.1 Kinetis SDK Kinetis SDK is a Software Development Kit that provides software support for the core and peripherals for Freescale devices with the ARM Cortex -M core. The KSDK includes a Hardware Abstraction Layer (HAL) for each peripheral and peripheral drivers built on the HAL. Example applications are provided to demonstrate peripheral driver and HAL usage to highlight the main features of the targeted SoCs. Also, the KSDK contains the latest available RTOS kernels, and other software components used on the supported evaluation boards. Contents 1 Introduction Overview Kinetis SDK Hardware requirement Toolchain requirement Kinetis Design Studio IDE (KDS) version 1.1 Hardware Configurations FRDM-KL03Z Introduction Build and Run a KSDK Demo Application IAR Embedded Workbench GCC ARM Embedded Tool KEIL MDK Embedded Tool Kinetis Design Studio IDE Revision history... 36

2 2.2 Hardware requirement A Freescale Freedom FRDM-KL03Z platform is required. 2.3 Toolchain requirement IAR Embedded Workbench version ARM GCC q1 Keil MDK 5.11 with Freescale Kinetis KLxx Series Device Support pack Kinetis Design Studio IDE (KDS) version Kinetis Design Studio IDE (KDS) version 1.1 Hardware Configurations This section describes how to set up the FRDM-KL03Z for the KSDK application. 3.1 FRDM-KL03Z Introduction FRDM-KL03Z features KL03Z32VFK4 MCU (48 MHz, 32 KB Flash, 2 KB RAM, low power, 24 QFN package) Capacitive touch slider, MMA8451Q accelerometer, Tri-color LED Flexible power supply options USB, coin cell battery, external source Easy access to MCU I/O Tri-color user controllable LEDs Two (2) user push-button switches for NMI interrupts and LLWU wake up (SW2/SW3) Thermistor sensor to measuring temperature Battery-ready, power-measurement access points Form factor compatible with Arduino R3 pin layout New OpenSDA debug interface Mass storage device flash programming interface (default) no tool installation required to evaluate demo apps P&E Debug interface provides run-control debugging and compatibility with IDE tools 2 Freescale Semiconductor, Inc.

3 3.1.2 FRDM-KL03Z first look Figure 1 FRDM-KL03Z 4 Build and Run a KSDK Demo Application This section describes the configuration process for the IAR Embedded Workbench, GCC ARM Embedded Tool, Keil µvision IDE, and Kinetis Design Studio IDE to build, run, and debug demo applications provided in the Freescale KSDK. The Hello_world demo application, targeted for the FRDM-KL03Z platform, is used as an example. Note that the SDK libraries must be built before building a demo application. To build the SDK libraries, see Appendix A of this document. 4.1 IAR Embedded Workbench Because the platform driver library is already included in the lib folder of the demo application project, you can open the demo application project and build the demo applications directly whenever the platform_lib.a is ready. Demo applications workspace files are located in: <install_dir>/demos/<demo_name>/<compiler>/<board_name>/<demo_name>.eww If the hello worlddemo application is used as an example, the IAR workspace file is located here: <install_dir>/demos/hello_world/iar/frdmkl03z48m/hello_world.eww Freescale Semiconductor, Inc. 3

4 1. To build a demo application, click the Make button. Figure 2 Build hello world demo application When the build is complete, IAR displays this information in the build window: Run a demo application Figure 3 Build hello world demo successfully Downloading and debugging the KSDK demo applications in IAR Embedded Workbench is a standard process for all applications. Use these steps to download and run the application: 1. Download and install the latest OpenSDA drivers from 2. After the successful installation of the OpenSDA driver, connect the OpenSDA USB connector, J9 for the FRDM-KL03Z platform, to the USB port on a PC. 4 Freescale Semiconductor, Inc.

5 3. Open the terminal application on a PC, such as PuTTy, and connect to the OpenSDA COM port number. At that point, Windows Device Manager shows the COM port number assigned to the OpenSDA. Figure 4 OpenSDA serial port in Device Manager 4. Configure the terminal settings as shown here: a baud rate b. No parity c. 8 data bits d. 1 stop bit Figure 5 Terminal (PuTTY) configurations Freescale Semiconductor, Inc. 5

6 5. Ensure that the debugger configuration is correct in the project options. Figure 6 Flash loader configurations 6 Freescale Semiconductor, Inc.

7 PE micro driver is selected in the debugger setup by default FRDM-KL03Z. NOTE IAR defaults to write 0x3D to FOPT(0x40d) to enable MCU boot determined by external pin (NMI) after next reset. To enable the user s configuration to flash configure field (0x400 0x40f), enable flash loader parameter --enable_config_write. Figure 7 Debugger configurations for driver Freescale Semiconductor, Inc. 7

8 OpenSDA-USB and SWD are configured in the PE micro settings as shown: Figure 8 Debugger configurations for PE micro 6. After the application is built successfully, click on the Download and Debug button to download the application to the target device. Figure 9 Download and debug button 8 Freescale Semiconductor, Inc.

9 7. After the application is downloaded to the target device, the debugger stops executing at the start of the main() function: Figure 10 Stop at main () when run debugging You can resume application execution by clicking the Go button. Figure 11 Go Button 8. The hello world application should now be running and the following banner should be displayed on the terminal. If this is not the case, check your terminal settings and terminal connections. Figure 12 Hello World demo running For example, it echoes any character that is typed: Figure 13 Help command Freescale Semiconductor, Inc. 9

10 4.2 GCC ARM Embedded Tool Environment setup Install GCC ARM v q1 embedded toolchain 1. Download the Windows installer. 2. Install the toolchain in the /Program Files/ location, located on your C:\ drive. Figure 14 Install GCC ARM embedded toolchain Install MinGW and MSYS 1. Download the MinGW installer. 2. Run mingw-get-setup.exe and select the installation path, such as: C:/MINGW. 3. Select the mingw32-base and the msys-base under the Basic Setup. Figure 15 MinGW Installer 10 Freescale Semiconductor, Inc.

11 4. Click Apply Changes from the Installation menu to install packages Configure system environment Figure 16 MinGW Installer apply change 1. Update the system environment variable Path to include the MinGW installation folder, such as the <drive>\mingw\msys\1.0\bin;<drive>:\mingw\bin. Figure 17 Environment variable update Freescale Semiconductor, Inc. 11

12 2. Run the GCC Command prompt in Start, All Programs. Then, run the GNU Tools ARM Embedded q1. Figure 18 PATH environment 3. If you build in the Windows command line, add the environment variable ARMGCC_DIR. Its value is the short name of ARM GCC install path. Figure 19 Add environment variable 4. If you build in GIT-bash or cygwin, set by "export ARMGCC_DIR=C:/PROGRA~/GNUTOO~1/4298B~1.820". Use '/' as a separator. 12 Freescale Semiconductor, Inc.

13 5. To build using the KDS IDE GCC toolchain, add the system environment variable KDSGCC_DIR and its value is the path of KDS IDE GCC toolchain. Note that you should use a short name here. Then, mingw32-make toolchain=kdsgcc Build the platform driver library Before building and debugging any demo application in KSDK, the driver library project should be built to generate the library archives: ksdk_platform_lib.a. Because this library contains all binary codes for HAL and the peripheral drivers specific to the chip, each SoC has its own platform.a library archives. To build the platform library, change the current directory in GCC command prompt to: <install_dir>/lib/ksdk_platform_lib/gcc/<device_name>/ For example: <install_dir>/lib/ksdk_platform_lib/gcc/kl03z4/ Run the command mingw32-make build=debug or mingw32-make build=release. When the build is complete, the ksdk_platform_lib.a is generated in the directory according to the build target: Debug - <install_dir>/lib/ksdk_platform_lib/gcc/<device_name>/debug Release - <install_dir>/lib/ksdk_platform_lib/gcc/<device_name>/release Demo applications use the ksdk_platform_lib.a to call the HAL and peripheral driver functions Build a demo application Change the directory in GCC command prompt to this: <install_dir>/demos/hello_world/gcc/frdmkl03z48m Run the mingw32-make build=debug target=flash command. When the build is complete, the hello_world.elf and the hello_world.bin are generated in this path: <install_dir>/demos/hello_world/gcc/frdmkl03z48m/flash_debug Run a demo application This section describes how to download and debug the applications by using J-Link. Note To use an external debugger, such as J-Link, you may need to disconnect the OpenSDA SWD from the KL03. Freescale Semiconductor, Inc. 13

14 You can debug the application by using Eclipse with CDT or command line. This example shows how to use the GDB command line. 1. Download and install J-Link software and documentation package for the Windows operating system. You may need a J-Link serial number to download the software. 2. KL03 is now supported in the Segger GDB server. Setup the GDB server by running the GDB server JLinkGDBServer.exe. Figure 20 J-Link GDB server GUI 14 Freescale Semiconductor, Inc.

15 3. Select the connection options for your board. For KL03, select the MKL03Z32xxx4 device as the target device. After configuration, click on the OK button to connect to the board. Figure 21 JLinkGDBServer connection 4. Download and debug from the command line Change the directory like this: <install_dir>/demos/hello_world/gcc/frdmkl03z48m/flash_debug Freescale Semiconductor, Inc. 15

16 5. Run the arm-none-eabi-gdb to start the GDB. After the GDB is launched, run the commands to load and start the application like this: target remote localhost:2331 monitor reset monitor flash breakpoints = 1 monitor flash download = 1 load hello_world.elf monitor go Debugging Figure 22 Run arm-none-eabi-gdb Use the GDB general debug command to do debug. To quit the debugging, use the monitor halt to halt the target CPU, then quit the debug. 4.3 KEIL MDK Embedded Tool Environment Setup Downloading and Installing the KEIL MDK 5.11 To download the KEIL MDK 5.11 (or later), follow these instructions: 16 Freescale Semiconductor, Inc.

17 1. Go to to download the KEIL MDK 5.11 (or later). 2. To install software tools, follow the installer package instructions once you receive your download. 3. Navigate to to locate Freescale Kinetis KLxx Series Device Support and Examples to find the latest version 1.20 or later. Download and install it to support KL03Z device Downloading and Installing the OpenSDA patch for KEIL MDK To download and install the OpenSDA patch for the KEIL MDK 5.11, follow these instructions: 1. Navigate to the Freescale Kinetis OSJTAG Drivers V1.20 at 2. At the Freescale Kinetis OSJTAG Drivers V1.20 download page, click the FSLKINETISDRIVERSV118.EXE (or higher) link and follow the onscreen instructions for saving this file to your computer. 3. Navigate to the location where you saved this file, double click the executable, and follow the onscreen instructions for installing these files Build a demo application Because the platform driver library is already included in the lib folder of the demo application project, open the demo application project and build the demo applications directly whenever the platform_lib.a is ready. Demo applications workspace files are located in: <install_dir>/demos/<demo_name>/<compiler>/<board_name>/<demo_name>.uvmpw If the hello_world demo application is used as an example, the KEIL workspace file is located here: <install_dir>/demos/hello_world/uv4/frdmkl03z48m/hello_world.uvmpw Freescale Semiconductor, Inc. 17

18 1. To build a demo application, click the Build button: Figure 23 Build button When the build is complete, Keil displays this information in the Build window: Run a demo application Figure 24 Keil build window Downloading and debugging KSDK demo applications in KEIL MDK Embedded Workbench is a standard process for all applications. Use these steps to download and run the application: 1. Download and install the latest OpenSDA drivers from 2. After the successful installation of the OpenSDA driver, connect the OpenSDA USB connector, J9 for the FRDM-KL03Z platform, to the USB port on a PC. 3. Open the terminal application on a PC, such as PuTTy, and connect to the OpenSDA COM port number. At that point, Windows Device Manager shows the COM port number assigned to the OpenSDA. 18 Freescale Semiconductor, Inc.

19 4. Configure the terminal settings as shown here: a baud rate b. No parity c. 8 data bits d. 1 stop bit 5. Ensure that the debugger configuration is correct in the project options. The PE micro driver is selected in the debugger setup by default for FRDM-KL03Z. Figure 25 PE micro driver Debug 6. Select the correct device and click Settings. Figure 26 PE micro Settings Freescale Semiconductor, Inc. 19

20 7. Make the correct configuration in the window below. Figure 27 PE micro Configuration 8. After the application is built successfully, click the Download and Debug button to download the application to the target device. Figure 28 Download and Debug button 20 Freescale Semiconductor, Inc.

21 9. After the application is downloaded to the target device, the debugger stops executing at the start of the main() function. Figure 29 Debugger You can resume application execution by clicking on the Go button: Figure 30 Go button Freescale Semiconductor, Inc. 21

22 10. The hello world application should now be running and following banner should be displayed on the terminal. If this is not the case, check your terminal settings and terminal connections. Figure 31 Hello world running NOTE Default startup_mkl03z4.s file define 0x3D to FOPT. Figure 32 Default startup So if boot is to be determined by the external pin (NMI) after downloading code to flash, the user can change this setting to another configuration to get another boot sequence. 4.4 Kinetis Design Studio IDE Environment Setup Install the Kinetis Design Studio IDE (KDS) and fix the environment variable (only for Windows users. See Appendix B for details). 22 Freescale Semiconductor, Inc.

23 4.4.2 Build a demo application If the platform driver is already included in the lib folder and the ksdk_platform_lib.a is generated, users can directly open the demo application project and build it in the KDS IDE. Demo application project files are located in : <install_dir>/demos/<demo_name>/<compiler>/<board_name> The Hello World demo application for the FRDM-KL03Z is used as an example. The KDS IDE workspace file is located at: <install_dir> /demos/hello_world/kds/frdmkl03z48m 1. You can click File Import to open the project. Use browse to select root directory and KDS IDE automatically opens the project in sub directories. Figure 33 KDS IDE project import 2. To build a demo application, click the Build button: Figure 34 Build test demo application Freescale Semiconductor, Inc. 23

24 When the build is complete, KDS IDE displays this information in the build output window: Run a demo application Figure 35 Build hello world demo application successfully 1. For the driver installation, refer to Appendix C for OpenSDA J-Link setup and serial terminal configuration. 2. In the Project Explorer, right click the project containing the embedded application that users want to debug. Or in the tool bar, click Run Debug configuration. Figure 36 Open the debug configuration 24 Freescale Semiconductor, Inc.

25 3. For the FRDM-KL03Z platform, the OpenSDA debug adapter running a compatible J-Link firmware is used. Double click the GDB SEGGER J-Link to create a new debug configuration. 4. Click the Main tab and check that the correct project and C/C++applications are chosen. The C/C++ Applications file should be an.elf file in your project directory. 5. The Hello World demo for the FRDM-KL03Z is used as an example. The project should be hello_world_frdmkl03z48m. The C/C++ Application should be debug/hello_world_frdmkl03z48m.elf. Figure 37 Main tab for a GDB SEGGER J-link Debugging configuration 6. Click the Debugger tab and select the correct device name MKL03Z32xxx4. Freescale Semiconductor, Inc. 25

26 7. The remaining fields of the Debugger tab can be left with the default value. This establishes a connection to the remote target as a local host. Figure 38 Debugger tab for GDB SEGGER J-link Debugging configuration 8. Click Apply, then click the Debug button. This launches the debugger. Figure 39 Debug perspective 26 Freescale Semiconductor, Inc.

27 9. You can resume application execution by clicking the Resume button, or press F8 to execute the application. Figure 40 Run button 10. The hello world application should now be running in PuTTy, and the following banner should be displayed in the terminal. If this is not the case, check your terminal settings and the terminal connections. Figure 41 hello world demo running Note that default startup files (startup_mkl03z4.s) write FOPT to 0x3D. Figure 42 startup_mkl03z4.s file The boot is determined by the external pin (NMI) after downloading code to flash, and the user can change this setting to another configuration to get another boot sequence. Freescale Semiconductor, Inc. 27

28 Appendix A: Build the platform driver library Before building and debugging any demo application in KSDK, the driver library project should be built to generate the library archive ksdk_platform_lib.a. Because this library contains all binary codes for HAL and the peripheral drivers specific to the chip, each SoC has its own platform.a library archive. 1. Build the platform driver library in IAR. To build the platform library, open the workspace file in IAR. The platform driver library project is located in: <install_dir>/lib/ksdk_platform_lib/iar/<device_name> The workspace file is named ksdk_platform_lib.eww: <install_dir>/lib/ksdk_platform_lib/iar/<device_name>/ksdk_platform_lib.eww The project file is named ksdk_platform_lib.ewp: <install_dir>/lib/ksdk_platform_lib/iar/<device_name>ksdk_platform_lib.ewp To build the platform driver library for the KL03, open the workspace file in IAR: <install_dir>/lib/ksdk_platform_lib/iar/<device_name>/ksdk_platform_lib.eww In the IAR Embedded Workbench project file, two compiler/linker configurations (build targets ) are supported: Debug - the compiler optimization is set to low. The debug information is generated for the binary. This target should be used for developing and debugging. Release - the compiler optimization is set to maximum. The debug information is not generated. This target should be used for the final application release. Note: Code is downloaded to Flash instead of RAM in both Debug and Release configurations. Choose the appropriate build target: Debug or Release. Then click the Make button (highlighted by a red rectangle below): Figure 43 Platform driver library build 28 Freescale Semiconductor, Inc.

29 When the build is complete, the platform_lib.a is generated in the directory according to the build target: Debug - <install_dir>/lib/ksdk_platform_lib/iar/<device_name>/debug Release - <install_dir>/lib/ksdk_platform_lib/iar/<device_name>/release Demo applications use the ksdk_platform_lib.a to call the functions of the HAL and the peripheral drivers. 2. Build the platform driver library in Keil. To build the platform driver library for the KL03, open the workspace file in KEIL: <install_dir>/lib/ksdk_platform_lib/uv4/<device_name>/ksdk_platform_lib.uvmpw In the KEIL Embedded Workbench project file, two compiler/linker configurations (build targets ) are supported: Debug - the compiler optimization is set to low. The debug information is generated for the binary. This target should be used for developing and debugging. Release - the compiler optimization is set to maximum. The debug information is not generated. This target should be used for the final application release. Note: Code is downloaded to Flash instead of RAM in both Debug and Release configurations. Choose the appropriate build target: Debug or Release, then click on the Rebuild button (highlighted by a red rectangle below): Figure 44 Platform driver library build When the build is complete, the ksdk_platform_lib.lib is generated in the directory according to the build target: Debug - <install_dir>/lib/ksdk_platform_lib/uv4/<device_name>/debug Release - <install_dir>/lib/ksdk_platform_lib/uv4/<device_name>/release Freescale Semiconductor, Inc. 29

30 Demo applications use the ksdk_platform_lib.lib to call the functions of the HAL and the peripheral drivers. 3. Build the platform driver library in the Kinetis Design Studio IDE. To build the platform library, open the workspace file in Kinetis Design Studio IDE. The platform driver library project is located in: <install_dir>/lib/ksdk_platform_lib/kds/<device_name> To build the platform driver library for the KL03, open the workspace file in Kinetis Design Studio IDE: < install _dir>/lib/ksdk_platform_lib/kds/kl03z4/ Use File Import to open the project. In the KDS IDE file, two compiler/linker configurations (build targets ) are supported. To view the configurations, click the arrow shown in this target. Figure 45 KDS IDE Complier/Linker selection Debug - the compiler optimization is set to low. The debug information is generated for the binary. This target should be used for developing and debugging. Release - the compiler optimization is set to maximum. The debug information is not generated. This target should be used for the final application release. Note: Code is downloaded to Flash instead of RAM in both Debug and Release configurations. 30 Freescale Semiconductor, Inc.

31 Choose the appropriate build target: Debug or Release, then click the Build button (highlighted by a red rectangle below): Figure 46 KDS IDE Platform driver library build When the build is complete, the ksdk_platform_lib.a is generated in the directory according to the build target: Debug - <install_dir>/lib/ksdk_platform_lib/kds/<device_name>/debug Release - <install_dir>/lib/ksdk_platform_lib/kds/<device_name>/release Demo applications use the ksdk_platform_lib.a to call the functions of the HAL and the peripheral drivers. Freescale Semiconductor, Inc. 31

32 Appendix B: Kinetis Design Studio environment variable fix and swap tool chain Finish the installation of the KDS-VX.X.exe in your PC. Then, follow these steps: In the startup menu, right-click Computer and choose Properties. In the left column, click the Advanced System Settings. Figure 47 Computer system setting 32 Freescale Semiconductor, Inc.

33 Figure 48 Environment variables for KSDK Swapping tool chains: To solve the tool chain issue integrated in the KDS IDE, take these steps to swap tool chains: o First, download the latest GNU GCC ARM as a zip file from and install the file. o Navigate to the KDS IDE install directory, locate the <install_dir>/ KDS_1.0.2/toolchain, and copy the all files in path <install dir>/gnu Tools ARM Embedded\ q2 to the folder. Freescale Semiconductor, Inc. 33

34 o Change link option for each project, open menu Project > Properties > C/C++ Build>Setting>Miscellaneous, change default value of other linker flags to -specs=nano.specs -specs=nosys.specs. Figure 49 Change link option 34 Freescale Semiconductor, Inc.

35 Appendix C: OpenSDA J-Link firmware updated To update the firmware of OpenSDA firmware to OpenSDA-J-Link: 1. Navigate to to get the latest firmware for the OpenSDA J-Link. 2. Hold down the Reset Button (located in 3.1.2) and then power the board by connecting to the USB port (located in 3.1.2). Notice that the LED blinking indicates that the board is now in Bootloader mode. You can release the Reset Button at this point. 3. Open Windows Explorer and locate the "BOOTLOADER" thumb drive. 4. Drag the JLink_OpenSDA.sda file onto the thumb drive (any application or firmware file can be drag-and-dropped onto the device at this point). 5. Remove and replace the USB cable. The Freescale Freedom platform is now updated to the latest firmware or application. Freescale Semiconductor, Inc. 35

36 5 Revision history This table summarizes revisions to this document. Revision History Revision number Date Substantial changes /2014 Initial release 36 Freescale Semiconductor, Inc.

37 How to Reach Us: Home Page: freescale.com Web Support: freescale.com/support Information in this document is provided solely to enable system and software implementers to use Freescale products. There are no express or implied copyright licenses granted hereunder to design or fabricate any integrated circuits based on the information in this document. Freescale reserves the right to make changes without further notice to any products herein. Freescale makes no warranty, representation, or guarantee regarding the suitability of its products for any particular purpose, nor does Freescale assume any liability arising out of the application or use of any product or circuit, and specifically disclaims any and all liability, including without limitation consequential or incidental damages. Typical parameters that may be provided in Freescale data sheets and/or specifications can and do vary in different applications, and actual performance may vary over time. All operating parameters, including typicals, must be validated for each customer application by customer s technical experts. Freescale does not convey any license under its patent rights nor the rights of others. Freescale sells products pursuant to standard terms and conditions of sale, which can be found at the following address: freescale.com/salestermsandconditions. Freescale, the Freescale logo, and Kinetis are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. All other product or service names are the property of their respective owners. ARM, ARM Powered logo, and Cortex are registered trademarks of ARM Limited (or its subsidiaries) in the EU and/or elsewhere. All rights reserved Freescale Semiconductor, Inc. Document Number: KSDKKL03UG Rev. # /2014

Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil

Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil Freescale Semiconductor, Inc. Document Number: KSDKGSKEILUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and MDK-ARM Keil µvision5 1 Read Me First This document

More information

Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC

Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC Freescale Semiconductor, Inc. Document Number: KSDKGSARMGCCUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and ARM GCC 1 Overview This section describes the steps

More information

Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE

Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE Freescale Semiconductor, Inc. Document Number: KSDKGSKDSUG User s Guide Rev. 1, 04/2015 Getting Started with Freescale MQX RTOS for Kinetis SDK and Kinetis Design Studio IDE 1 Overview This section describes

More information

Getting Started with Kinetis SDK (KSDK) v.1.3

Getting Started with Kinetis SDK (KSDK) v.1.3 Freescale Semiconductor Document Number: KSDK13GSUG User's Guide Rev. 1, 11/2015 Getting Started with Kinetis SDK (KSDK) v.1.3 1 Overview Kinetis SDK (KSDK) is a Software Development Kit that provides

More information

Getting Started with Kinetis SDK (KSDK) v.1.2

Getting Started with Kinetis SDK (KSDK) v.1.2 Freescale Semiconductor Document Number: KSDK12GSUG User's Guide Rev. 0, 4/2015 Getting Started with Kinetis SDK (KSDK) v.1.2 1 Overview Kinetis SDK (KSDK) is a Software Development Kit that provides comprehensive

More information

MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform

MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform Freescale Semiconductor Document Number: MQXKSDK120KL33RN Release Notes Rev. 0, 4/2015 MQX RTOS Release Notes for Kinetis SDK v1.2.0 for KL33Z64 for FRDM-KL43Z Freescale Freedom Development Platform 1

More information

MQX RTOS Release Notes for Kinetis SDK FRDM- KV10Z Freescale Freedom Development Platform

MQX RTOS Release Notes for Kinetis SDK FRDM- KV10Z Freescale Freedom Development Platform Freescale Semiconductor Document Number: MQXKSDK120KV10RN Release Notes Rev. 0, MQX RTOS Release Notes for Kinetis SDK 1.2.0 FRDM- KV10Z Freescale Freedom Development Platform 1 Overview These are the

More information

TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools

TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools Freescale Semiconductor User s Guide Doc Number: TWRKV10Z32IARUG Rev. 0.1, 01/2014 TWR-KV10Z32 Sample Code Guide for IAR Board configuration, software, and development tools by Freescale Semiconductor,

More information

Getting Started with FreeRTOS BSP for i.mx 7Dual

Getting Started with FreeRTOS BSP for i.mx 7Dual Freescale Semiconductor, Inc. Document Number: FRTOS7DGSUG User s Guide Rev. 0, 08/2015 Getting Started with FreeRTOS BSP for i.mx 7Dual 1 Overview The FreeRTOS BSP for i.mx 7Dual is a Software Development

More information

TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools

TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools Freescale Semiconductor User s Guide Doc Number: TWRKV10Z32CWUG Rev. 0.1, 01/2014 TWR-KV10Z32 Sample Code Guide for CodeWarrior Board configuration, software, and development tools by Freescale Semiconductor,

More information

Kinetis SDK v Release Notes for KV5x Derivatives

Kinetis SDK v Release Notes for KV5x Derivatives Freescale Semiconductor, Inc. Document Number: KSDK120MKV5XRN Release Notes Rev. 0, 08/2015 Kinetis SDK v.1.2.0 Release Notes for KV5x Derivatives 1 Overview These are the release notes for the Freescale

More information

Freescale MQX USB Stack for TWR-K24F120M GA User s Guide

Freescale MQX USB Stack for TWR-K24F120M GA User s Guide Freescale Semiconductor Document Number: USBTWRK24F120MUG User s Guide Rev. 1.0, 08/2014 Freescale MQX USB Stack for TWR-K24F120M GA User s Guide 1 Read Me First This document describes how to compile

More information

Quick Start Guide for FRDM-KL05Z

Quick Start Guide for FRDM-KL05Z Quick Start Guide for FRDM-KL05Z Contents: Quick Start Package Overview Get to Know the FRDM-KL05Z Getting Started Out of the Box Introduction to OpenSDA Explore Further www.freescale.com/frdm-kl05z 1

More information

Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z

Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z Quick Start Guide for the Freescale Freedom Development Platform FRDM-KL43Z External Use Contents ts Quick Start Package Overview GettoKnowtheFRDMKL43Z to the FRDM-KL43Z Getting Started Out of the Box

More information

Quick Start Guide for FRDM-KL46Z Rev 1

Quick Start Guide for FRDM-KL46Z Rev 1 www.freescale.com/frdm-kl46z These documents are available as part of the Quick Start Package: Name Type Description Quick Start Guide PDF This document OpenSDA Applications Folder OpenSDA Applications

More information

Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module

Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module Freescale Semiconductor Document Number: KSDKK24FN256RN Release Notes 1.0.0, 08/2014 Kinetis SDK Release Notes for the TWR-K24F120M Tower System Module 1 Overview These are the release notes for the TWR-K24F120M

More information

Getting Started with MCUXpresso SDK

Getting Started with MCUXpresso SDK NXP Semiconductors Document Number: MCUXSDKGSUG User's Guide Rev. 3, 03/2017 Getting Started with MCUXpresso SDK 1 Overview The MCUXpresso Software Development Kit (SDK) provides comprehensive software

More information

Freescale MKW40Z IEEE Software Quick Start Guide

Freescale MKW40Z IEEE Software Quick Start Guide Freescale Semiconductor, Inc. Document Number: MKW40Z802154SW523QSG User's Guide Rev. 0, 09/2015 Freescale MKW40Z IEEE 802.15.4 Software Quick Start Guide This document is a brief presentation of the Freescale

More information

Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler

Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler Freescale Semiconductor, Inc. Document Number: AN5163 Application Note Load Position-Independent Code (PIC) on a Kinetis Platform Using the IAR EWARM Compiler 1. Introduction This document provides guidance

More information

Getting Started with MQX RTOS for Kinetis SDK

Getting Started with MQX RTOS for Kinetis SDK Freescale Semiconductor Document Number: MQXKSDKGSUG User's Guide Rev. 1, 04/2015 Getting Started with MQX RTOS for Kinetis SDK 1 Introduction This document describes the steps required to configure supported

More information

Quick Start Guide for FRDM-KL46Z Rev 1

Quick Start Guide for FRDM-KL46Z Rev 1 www.freescale.com/frdm-kl46z These documents are available as part of the Quick Start Package: Name Type Description Quick Start Guide PDF This document OpenSDA Applications Folder OpenSDA Applications

More information

Kinetis Bootloader v1.2.0 Release Notes

Kinetis Bootloader v1.2.0 Release Notes Freescale Semiconductor Document Number: KBTLDR120RN Release Notes Rev. 0, 07/2015 Kinetis Bootloader v1.2.0 Release Notes 1 Overview These are the release notes for the Kinetis bootloader v1.2.0. This

More information

Getting Started with the MCU Flashloader

Getting Started with the MCU Flashloader NXP Semiconductors Document Number: MBOOTFLASHGS User's Guide Rev 3, 05/2018 Getting Started with the MCU Flashloader Contents Contents Chapter 1 Introduction...3 Chapter 2 Overview...4 2.1 MCU flashloader...4

More information

Freescale Kinetis Software Development Kit Release Notes

Freescale Kinetis Software Development Kit Release Notes Freescale Semiconductor, Inc. Document Number: KSDKRN Release Notes Rev. 1.0.0, 07/2014 Freescale Kinetis Software Development Kit Release Notes 1 Overview These are the release notes for the Freescale

More information

FRDM-KL03Z User s Guide

FRDM-KL03Z User s Guide Freescale Semiconductor User s Guide Document Number: FRDMKL03ZUG Rev. 0, 7/2014 FRDM-KL03Z User s Guide 1 Overview The Freescale Freedom development platform is an evaluation and development tool ideal

More information

Getting Started with MCUXpresso SDK CMSIS Packs

Getting Started with MCUXpresso SDK CMSIS Packs NXP Semiconductors Document Number: MCUXSDKPACKSGSUG User's Guide Rev. 1, 11/2017 Getting Started with MCUXpresso SDK CMSIS Packs 1 Introduction The MCUXpresso Software Development Kit (SDK) is a comprehensive

More information

Offline Flash Programmer for Kinetis K- and L-series MCUs

Offline Flash Programmer for Kinetis K- and L-series MCUs NXP Semiconductors Document Number: AN5331 Application Note Rev. 0, 09/2016 Offline Flash Programmer for Kinetis K- and L-series MCUs By: Xi Yang 1 Introduction Effective and convenient tools for the flash

More information

Kinetis SDK v Release Notes for the MK21DA5 and MKW24D5 Devices

Kinetis SDK v Release Notes for the MK21DA5 and MKW24D5 Devices Freescale Semiconductor, Inc. Document Number: KSDK110MK21DA5MKW24D5RN Release Notes Rev. 0, 02/2015 Kinetis SDK v.1.1.0 Release Notes for the MK21DA5 and MKW24D5 Devices 1 Overview These are the release

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

Emulating Dual SPI Using FlexIO

Emulating Dual SPI Using FlexIO Freescale Semiconductor, Inc. Document Number: AN5242 Application Note Rev. 0, 01/2016 Emulating Dual SPI Using FlexIO 1. Introduction This application note discusses one example of how to use FlexIO module

More information

Kinetis Bootloader Demo Application User's Guide

Kinetis Bootloader Demo Application User's Guide Freescale Semiconductor Document Number: KBTLDRDEMOUG User's Guide Rev. 2, 04/2016 Kinetis Bootloader Demo Application User's Guide 1 Introduction This document describes how to use the Kinetis bootloader

More information

Quick Start Guide for FRDM-FXS-MULTI-B

Quick Start Guide for FRDM-FXS-MULTI-B Quick Start Guide for FRDM-FXS-MULTI-B Contents: Quick Start Package Overview Get to Know the FRDM-FXS-MULTI-B Getting Started Out of the Box Explore Further freescale.com/frdm-multi-b External Use FRDMFXSMULTIBQSG

More information

Emulating I2C Bus Master by using FlexIO

Emulating I2C Bus Master by using FlexIO Freescale Semiconductor, Inc. Document Number: AN5133 Application Notes Rev. 0, 06/2015 Emulating I2C Bus Master by using FlexIO 1. Introduction This application note lists the steps to use the FlexIO

More information

OpenSDA on TWR-KW2x. User s Guide Rev 1.1

OpenSDA on TWR-KW2x. User s Guide Rev 1.1 OpenSDA on TWR-KW2x User s Guide 2013 Rev 1.1 Freescale, Inc. TKW2x_OSDAUG Table of Contents 1 Overview...3 1.1 OpenSDA Hardware...4 1.2 OpenSDA Software...4 1.2.1 MSD Bootloader...4 1.2.2 P&E Debug Application...5

More information

HVP-KV10Z32 User s Guide

HVP-KV10Z32 User s Guide Freescale Semiconductor, Inc. User s Guide Document Number: HVPKV10Z32UG Rev. 0, 12/2014 HVP-KV10Z32 User s Guide by: Ivan Lovas 1 High voltage controller card HVP-KV10Z32 This document supports the HVP-MC3PH

More information

FRDM-K64F Board Errata

FRDM-K64F Board Errata Freescale Semiconductor, Inc. Document Number: FRDMK64F_ERRATA Board Errata Rev. 2.0, 06/2014 FRDM-K64F Board Errata by: Freescale Semiconductor, Inc. 2014 Freescale Semiconductor, Inc. 1 Errata Title:

More information

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network

Kinetis Bootloader to Update Multiple Devices in a Field Bus Network Freescale Semiconductor, Inc. Document Number: AN5204 Application Note Rev. 0, 01/2016 Kinetis Bootloader to Update Multiple Devices in a Field Bus Network 1. Introduction This application note describes

More information

NXP Semiconductors MCU Bootloader Demo Applications User's Guide

NXP Semiconductors MCU Bootloader Demo Applications User's Guide NXP Semiconductors MCU Bootloader Demo Applications User's Guide Document Number: MBOOTDEMOUG User's Guide Rev 3, 05/2018 Contents Contents Chapter 1 Introduction...3 Chapter 2 Overview...4 2.1 MCU bootloader...

More information

Kinetis Updater User's Guide

Kinetis Updater User's Guide Freescale Semiconductor Document Number: KUPDTRUG User's Guide Rev. 1, 07/2015 Kinetis Updater User's Guide 1 Introduction The Kinetis Updater is a Windows OS application used to write user application

More information

Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide

Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide NXP Semiconductors Document Number: MKW41ZSNIFFERQSG User's Guide Rev. 2, 09/2016 Kinetis USB-KW41Z Wireless Protocol Sniffer Quick Start Guide This document describes the usage of the USB- KW41Z evaluation

More information

Building U-Boot in CodeWarrior ARMv8

Building U-Boot in CodeWarrior ARMv8 NXP Semiconductors Document Number: AN5347 Application Note Rev. 0, 10/2016 Building U-Boot in CodeWarrior ARMv8 1 Introduction This application note defines guidelines for configuring CodeWarrior for

More information

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM

User Manual Rev. 0. Freescale Semiconductor Inc. FRDMKL02ZUM FRDM-KL02Z User Manual Rev. 0 Freescale Semiconductor Inc. FRDMKL02ZUM 1. Overview The Freescale Freedom development platform is an evaluation and development tool ideal for rapid prototyping of microcontroller-based

More information

MCU Bootloader Release Notes

MCU Bootloader Release Notes NXP Semiconductors Document Number: MBOOT250RN User's Guide Rev 1, 05/2018 MCU Bootloader Release Notes Overview Chapter 1 Overview These are the release notes for the MCU bootloader v2.5.0. For more information

More information

Freedom FRDM-KV31F Development Platform User s Guide

Freedom FRDM-KV31F Development Platform User s Guide Freescale Semiconductor, Inc. Document Number: FRDMKV31FUG User's Guide 0, 02/2016 Freedom FRDM-KV31F Development Platform User s Guide 1. Introduction The Freedom development platform is a set of software

More information

WPR1500-LDO MP Receiver V2.1 Reference Design User s Guide

WPR1500-LDO MP Receiver V2.1 Reference Design User s Guide NXP Semiconductors User s Guide Document Number: WPR1500LDOMPUG Rev. 0, 09/2016 WPR1500-LDO MP Receiver V2.1 Reference Design User s Guide 1 Introduction This document describes how to use the WPR1500-LDO

More information

Reference Design KL25-AGMP01 User Guide 10-Axis Data Logger Tool Kit

Reference Design KL25-AGMP01 User Guide 10-Axis Data Logger Tool Kit Freescale Semiconductor Document Number: RDKL25AGMP01UG USER GUIDE Rev. 1.0, 9/2015 Reference Design KL25-AGMP01 User Guide 10-Axis Data Logger Tool Kit Contents 1 Getting Started... 2 1.1 Kit Contents...

More information

HVP-KV31F120M User s Guide

HVP-KV31F120M User s Guide Freescale Semiconductor, Inc. User s Guide Document Number: HVPKV31F120MUG Rev. 0, 12/2014 HVP-KV31F120M User s Guide by: Ivan Lovas 1 High voltage controller card HVP-KV31F120M This document supports

More information

RN2483_Silica Documentation

RN2483_Silica Documentation RN2483_Silica Documentation Release 0 Silica Dec 19, 2017 Contents 1 Embedded Vision NXP 3 2 INTRODUCTION 5 2.1 Development tools............................................ 6 i ii Version 1.00E Copyright

More information

Adding a run control interface into an existing CodeWarrior for MCU v10.x project

Adding a run control interface into an existing CodeWarrior for MCU v10.x project Freescale Semiconductor Document Number:AN4902 Application Note Rev 03/2014 Adding a run control interface into an existing CodeWarrior for MCU v10.x project 1 Introduction There are two ways to add a

More information

FRDM-KE02Z User s Manual

FRDM-KE02Z User s Manual Freescale Semiconductor Document Number: FRDMKE02ZUM User s Manual Rev. 0, 07/2013 FRDM-KE02Z User s Manual 1 Overview The Freescale Freedom Development Platform is an evaluation and development tool ideal

More information

Freescale MQX RTOS TWR-K64F120M Release Notes

Freescale MQX RTOS TWR-K64F120M Release Notes Freescale Semiconductor Document Number: MQXTWRK64RN Release Notes Rev. 2, 03/2014 Freescale MQX RTOS 4.1.0 TWR-K64F120M Release Notes 1 Introduction These are the Release Notes for the K64F120M standalone

More information

Three-Phase Power Meter Hardware Design Reference Manual

Three-Phase Power Meter Hardware Design Reference Manual Freescale Semiconductor, Inc. Document Number: DRM146 Design Reference Manual Rev. 0, 03/2014 Three-Phase Power Meter Hardware Design Reference Manual by: Albert Chen and Shawn Shi 1 Overview Freescale

More information

Freedom FRDM-MC-LVBLDC Development Platform User s Guide

Freedom FRDM-MC-LVBLDC Development Platform User s Guide Freescale Semiconductor, Inc. Document Number: FRDMLVBLDCUG User's Guide 0, 02/2016 Freedom FRDM-MC-LVBLDC Development Platform User s Guide 1. Introduction The Freedom development platform is a set of

More information

Hands-On Workshop: ARM mbed

Hands-On Workshop: ARM mbed Hands-On Workshop: ARM mbed FTF-DES-F1302 Sam Grove - ARM Michael Norman Freescale J U N. 2 0 1 5 External Use Agenda What is mbed mbed Hardware mbed Software mbed Tools mbed Support and Community Hands-On

More information

Quick Start Guide. TWR-KV10Z32 Development Kit for Kinetis KV1x Family TOWER SYSTEM

Quick Start Guide. TWR-KV10Z32 Development Kit for Kinetis KV1x Family TOWER SYSTEM TWR-KV10Z32 Development Kit for Kinetis KV1x Family TOWER SYSTEM Get to Know the TWR-KV10Z32 Thermistor RT4 User s Button SW1 Motor Control Auxiliary Connector Reset Button Thermistor RT1 UART Select Jumper

More information

Kinetis KE1xF512 MCUs

Kinetis KE1xF512 MCUs NXP Semiconductors Document Number: KE1XF512PB Product Brief Rev. 1.1, 08/2016 Kinetis KE1xF512 MCUs Robust 5V MCUs with ADCs, FlexTimers, CAN and expanding memory integration in Kinetis E-series. Now

More information

Processor Expert Software for i.mx Processors Version 1.0

Processor Expert Software for i.mx Processors Version 1.0 Release Notes Processor Expert Software for i.mx Processors Version 1.0 1 Overview Processor Expert Software for i.mx processors is a suite of configuration tools for i.mx family processors. This file

More information

Freescale MQX RTOS for Kinetis SDK Release Notes version beta

Freescale MQX RTOS for Kinetis SDK Release Notes version beta Freescale Semiconductor Document Number: MQXKSDKRN Release Notes Rev 1.0.0, 07/2014 Freescale MQX RTOS for Kinetis SDK Release Notes version 1.0.0 beta 1 Read Me This is the release notes for Freescale

More information

Collecting Linux Trace without using CodeWarrior

Collecting Linux Trace without using CodeWarrior Freescale Semiconductor Application Note Document Number: AN5001 Collecting Linux Trace without using CodeWarrior 1. Introduction This document guides you how to collect Linux trace directly from QDS or

More information

Kinetis Flash Tool User's Guide

Kinetis Flash Tool User's Guide Freescale Semiconductor Document Number: KFLASHTOOLUG User's Guide Rev. 0, 04/2016 Kinetis Flash Tool User's Guide 1 Introduction The Kinetis Flash Tool is a GUI application on Windows OS, aiming to offer

More information

Kinetis Flash Tool User's Guide

Kinetis Flash Tool User's Guide NXP Semiconductors Document Number: MBOOTFLTOOLUG User's Guide Rev 1, 05/2018 Kinetis Flash Tool User's Guide Contents Contents Chapter 1 Introduction...4 Chapter 2 System Requirements... 5 Chapter 3 Tool

More information

MCUXpresso SDK USB Power Delivery

MCUXpresso SDK USB Power Delivery NXP Semiconductors Document Number: Quick Start Guide Rev. 1.0, 04/2017 MCUXpresso SDK USB Power Delivery 1. Introduction Today many devices charge or get their power from USB port connected in laptops,

More information

The process also requires the use of the following files found in the Micriµm Quick Start Package for the FRDM-KL46Z:

The process also requires the use of the following files found in the Micriµm Quick Start Package for the FRDM-KL46Z: Micriµm µc/os-iii and µc/probe on the Freescale FRDM-KL46Z Introduction This document will guide you through the necessary steps to run the precompiled example of Micriµm s µc/os-iii and µc/probe on the

More information

TWR-KL28Z User s Guide

TWR-KL28Z User s Guide NXP Semiconductors Document Number: TWRKL28ZUG User's Guide Rev. 0, 06/2016 TWR-KL28Z User s Guide 1. Introduction The Tower development platform is a set of software and hardware tools for evaluation

More information

FRDM-KL26Z User s Guide

FRDM-KL26Z User s Guide Freescale Semiconductor User s Guide Doc Number: FRDMKL26ZUG Rev. 0, 10/2013 FRDM-KL26Z User s Guide by Freescale Semiconductor, Inc. 1 Overview The Freescale Freedom development platform is a set of software

More information

Using an External GCC Toolchain with CodeWarrior for Power Architecture

Using an External GCC Toolchain with CodeWarrior for Power Architecture Freescale Semiconductor Application Note Document Number: AN5277 Using an External GCC Toolchain with CodeWarrior for Power Architecture 1. Introduction This document explains how to use an external GNU

More information

How to Enable Boot from QSPI Flash

How to Enable Boot from QSPI Flash NXP Semiconductors Document Number: AN12108 Application Note Rev. 0, 02/2018 How to Enable Boot from QSPI Flash 1. Introduction The i.mx RT Series is industry s first crossover processor provided by NXP.

More information

µc/probe on the Freescale FRDM-KL05Z without an RTOS

µc/probe on the Freescale FRDM-KL05Z without an RTOS Micriµm µc/probe on the Freescale FRDM-KL05Z without an RTOS Introduction This document will guide you through the necessary steps to connect µc/probe to any embedded application running on the FRDM-KL05Z

More information

Kinetis KL1x General-Purpose Ultra-Low- Power MCUs Up to 256 KB Flash and 32 KB SRAM

Kinetis KL1x General-Purpose Ultra-Low- Power MCUs Up to 256 KB Flash and 32 KB SRAM Freescale Semiconductor, Inc. Product Brief Document Number: KL1XPB Rev. 1, 04/2015 Kinetis KL1x General-Purpose Ultra-Low- Power MCUs Up to 256 KB Flash and 32 KB SRAM 1. Kinetis L family introduction

More information

TWR-LS1021A Getting Started

TWR-LS1021A Getting Started Freescale Semiconductor Getting Started Document Number: TWR-LS1021AGS Rev. 3, 10/2015 TWR-LS1021A Getting Started 1 Introduction This document describes how to connect the QorIQ LS1021A Tower System Module

More information

How to Enable Boot from HyperFlash and SD Card

How to Enable Boot from HyperFlash and SD Card NXP Semiconductors Document Number: AN12107 Application Note Rev. 0, 12/2017 How to Enable Boot from HyperFlash and SD Card 1. Introduction The i.mx RT Series is industry s first crossover processor provided

More information

Controller Continuum. for Microcontrollers V6.3. Quick Start

Controller Continuum. for Microcontrollers V6.3. Quick Start Controller Continuum for Microcontrollers V6.3 Quick Start CodeWarrior Development Studio for Microcontrollers V6.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space PC with 1 GHz Intel

More information

How to use FlexMemory as D-Flash and EEPROM in KE1xF

How to use FlexMemory as D-Flash and EEPROM in KE1xF NXP Semiconductors Document Number: AN5338 Application Note Rev. 0, 09/2016 How to use FlexMemory as D-Flash and EEPROM in KE1xF 1. Introduction The FlexMemory (FlexNVM and FlexRAM) is available on NXP's

More information

TWR-LS1021A Getting Started

TWR-LS1021A Getting Started Freescale Semiconductor Getting Started Document Number: TWR-LS1021AGS Rev. 0, 09/2014 TWR-LS1021A Getting Started 1 Introduction This document explains how to connect the QorIQ LS1021A Tower System Module

More information

Kinetis Motor Suite v1.2.0 Release Notes

Kinetis Motor Suite v1.2.0 Release Notes NXP Semiconductors Document Number: KMSRN Release Notes Rev. 3, 11/2017 Kinetis Motor Suite v1.2.0 Release Notes 1. Introduction Based on Kinetis V microcontrollers, Kinetis Motor Suite (KMS) is an integrated

More information

Quick Start Guide TRK-KEA. Kinetis EA Series MCUs for Automotive Electronics Applications. StarterTRAK

Quick Start Guide TRK-KEA. Kinetis EA Series MCUs for Automotive Electronics Applications. StarterTRAK TRK-KEA Kinetis EA Series MCUs for Automotive Electronics Applications StarterTRAK Get to Know the TRK-KEA Kinetis EA MCU SCI Selector 2 Individual Port Access Power LED Power Source Selector User Buttons

More information

Release Notes. S32 Design Studio for ARM v1.1

Release Notes. S32 Design Studio for ARM v1.1 Release Notes S32 Design Studio for ARM v1.1 TABLE OF CONTENTS 1 Release description... 2 1.1 Release content... 2 2 What s New... 2 2.1 New device support... 2 2.2 New features... 2 3 System Requirements...

More information

PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide

PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide Freescale Semiconductor Document Number: PMSMUG User Guide Rev. 0, 06/2013 PMSM Field-Oriented Control Using MC56F84789 DSC With Encoders Demo Guide by: Pavel Rech 1 Introduction The application described

More information

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition

CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition CodeWarrior Development Studio for StarCore DSP SC3900FP Architectures Quick Start for the Windows Edition SYSTEM REQUIREMENTS Hardware Operating System Disk Space Intel Pentium 4 processor, 2 GHz or faster,

More information

Watt Saver Software Component (WSC)

Watt Saver Software Component (WSC) Freescale Semiconductor Document Number:WSSCUG User Guide Rev 1, 10/2013 Watt Saver Software Component (WSC) 1 Introduction This document describes the basic steps for getting started with the Watt Saver

More information

General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices

General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices Freescale Semiconductor Document Number: AN2864 Application Note Rev. 2, 09/2015 General C Functions for the etpu Covers the MCF523x, MPC5500, MPC5600, MPC5700, MPX40 and all etpu-equipped Devices by:

More information

Smart Plug Software Design Reference Manual

Smart Plug Software Design Reference Manual NXP Semiconductors Document Number: DRM158 Design Reference Manual Rev. 0, 03/2017 Smart Plug Software Design Reference Manual 1. Introduction This design reference manual describes a solution for a smart

More information

MCUXpresso SDK USB Stack User s Guide

MCUXpresso SDK USB Stack User s Guide NXP Semiconductors Document Number: USBSUG User s Guide Rev. 5, 03/2017 MCUXpresso SDK USB Stack User s Guide 1 Overview This document provides the following: Detailed steps to compile the USB examples,

More information

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction

UM1727 User manual. Getting started with STM32 Nucleo board software development tools. Introduction User manual Getting started with STM32 Nucleo board software development tools Introduction The STM32 Nucleo board is a low-cost and easy-to-use development platform used to quickly evaluate and start

More information

DDR Validation Tool Getting Started Guide

DDR Validation Tool Getting Started Guide DDR Validation Tool Getting Started Guide Document Number: QCVSDDRVGETSTARTUG Rev 4.1, 10/2014 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Getting Started with DDR Validation

More information

Quick Start Guide for mbed enabling Freescale FRDM-KL25z Freedom board

Quick Start Guide for mbed enabling Freescale FRDM-KL25z Freedom board Quick Start Guide for mbed enabling Freescale FRDM-KL25z Freedom board FRDM-KL25Z Freedom board is a low-cost evaluation and development platform to demonstrate the capability of the Kinetis-L family of

More information

FRDM-KE04Z User s Guide User Guide

FRDM-KE04Z User s Guide User Guide Freescale Semiconductor Document Number: FRDMKE04ZUM User's Guide Rev 0, 02/2014 FRDM-KE04Z User s Guide User Guide by: Wang Peng 1 Overview The Freescale Freedom development platform is an ideal evaluation

More information

for ColdFire Architectures V7.2 Quick Start

for ColdFire Architectures V7.2 Quick Start for ColdFire Architectures V7.2 Quick Start CodeWarrior Development Studio for ColdFire Architectures V7.2 Quick Start SYSTEM REQUIREMENTS Hardware Operating System Disk Space 1 GHz Pentium compatible

More information

Keil TM MDK-ARM Quick Start for. Holtek s HT32 Series Microcontrollers

Keil TM MDK-ARM Quick Start for. Holtek s HT32 Series Microcontrollers Keil TM MDK-ARM Quick Start for Holtek s Microcontrollers Revision: V1.10 Date: August 25, 2011 Table of Contents 1 Introduction... 5 About the Quick Start Guide... 5 About the Keil MDK-ARM... 6 2 System

More information

TWR-K60F120M Quick Start Guide

TWR-K60F120M Quick Start Guide TWR-K60F120M Quick Start Guide High-Performance MCUs with Connectivity and Security Tower System Development Board Platform Get to Know the TWR-K60F120M Board Primary SW1 Potentiometer SD Card Socket Infra-Red

More information

Hands-On Workshop: Developing with the Kinetis Software Development Kit

Hands-On Workshop: Developing with the Kinetis Software Development Kit Hands-On Workshop: Developing with the Kinetis Software Development Kit FTF-SDS-F0127 Michael Norman Technical Marketing Manager Chris Brown Applications Engineer A p r i l. 0 9. 2 0 1 4 TM External Use

More information

NADK Reflector Application Debug

NADK Reflector Application Debug Freescale Semiconductor Document Number: AN4940 Application Note Rev. 11.2, 01/2016 NADK Reflector Application Debug 1 Introduction The most popular user space application for SDK/NADK usage is the packet

More information

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start

CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start CodeWarrior Development Studio for Power Architecture Processors Version 10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core,

More information

MMA845x Driver: Quick Start Guide

MMA845x Driver: Quick Start Guide Freescale Semiconductor Document Number: AN4475 Application Note Rev 0, 07/2012 MMA845x Driver: Quick Start Guide by: Laura Salhuana 1 Introduction This quick start guide demonstrates how to load the MMA845x

More information

P1010RDB-PB Quick Start Guide

P1010RDB-PB Quick Start Guide Freescale Semiconductor P1010RDB-PB Quick Start Guide Document Number: P1010RDBPBQS Rev. 0, 10/2013 P1010RDB-PB Quick Start Guide 1 Introduction to P1010RDB-PB This quick start guide applies to boards

More information

Working around ERR7026 according to application needs

Working around ERR7026 according to application needs Freescale Semiconductor Document Number: EB795 Engineering Bulletin Rev. 0, 08/2013 Working around ERR7026 according to application needs by: Automotive and Industrial Solutions Group 1 Introduction This

More information

Kinetis KM3x Metrology MCUs based on ARM Cortex -M0+ Core

Kinetis KM3x Metrology MCUs based on ARM Cortex -M0+ Core Freescale Semiconductor, Inc. Document Number: KM3XPB Product Brief Rev. 0, 06/2015 Kinetis KM3x Metrology MCUs based on ARM Cortex -M0+ Core Up to 256 KB Flash and 32 KB SRAM 1. Kinetis M family Kinetis

More information

KW40 ZumoBot Reference Design

KW40 ZumoBot Reference Design Freescale Semiconductor, Inc. Document Number: KW40ZBRDUG User's Guide Rev. 1, 01/2016 KW40 ZumoBot Reference Design By: Alberto Vargas 1. Introduction The ZumoBot Reference Design is initially provided

More information

TWR-KL43Z48M Quick Start Guide

TWR-KL43Z48M Quick Start Guide TWR-KL43Z48M Quick Start Guide Development Kit for Kinetis KL43/33/27/17 MCU Families Tower System Quick Start Guide Get to Know the TWR-KL43Z48M Touch-sLCD TWRPI KL43 SWD Debugger Header Reset Button

More information

Component Development Environment Getting Started Guide

Component Development Environment Getting Started Guide Component Development Environment Getting Started Guide Document Number: CDEGS Rev 02/2014 2 Freescale Semiconductor, Inc. Contents Section number Title Page Chapter 1 Introduction 1.1 Overview...5 1.2

More information