Component validity and internal error checking functionality to ensure reliable operation

Size: px
Start display at page:

Download "Component validity and internal error checking functionality to ensure reliable operation"

Transcription

1 October 2013

2 Overview of Tower system, CodeWarrior v10.3 and MQX 4.0 Easy OS configuration with GUI based interface Using BSP clone wizard to start with BSP porting Kernel debugging with task aware debugger tool Using Processor Expert together with MQX Estimate flash and RAM size usage for MQX based application Using performance tools for MQX 2

3 David Connelly Applications Engineer on the MCU Applications Team Based in Austin, TX 15 Years with Freescale 12 Years with Automotive Microcontrollers 3 Years with MCU Applications BSEE Rochester Institute of Technology (RIT) 3

4

5 Simple and Scalable Designed to be customized by Feature, Size, and Speed Lightweight services Smaller and faster vs. regular MQX services Allows control of RAM/ROM utilization New, custom components can be added Scalable Code Density ideal for MCU & MPU ROM size ranges from 10K to 150K RAM size starting at 2.5K Powerful and Integrated Full priority-based, pre-emptive scheduler Powerful real-time performance Fully re-entrant, including interrupt service routines Hand-optimized context switch & low-level interrupt times Time-critical services optimized for speed & deterministic performance Component validity and internal error checking functionality to ensure reliable operation 5

6 RTOS manages the time of the microcontroller Features of a RTOS: Allows multi-tasking Scheduling of the tasks with priorities Synchronization of the resource access Inter-task communication Time predictable Interrupt handling 6

7 Navigate to C:\Freescale\Freescale_MQX_4_0\config\twrk70f120m\cw10 and drag twrk70f120m.wsd to CW10.3 7

8 The MQX libraries projects for TWR-K70F120M has been imported as a working set. Select working set 8

9 Before building MQX libraries, you can try to delete the library files under D:\Freescale\Freescale_MQX_4_0\lib\twrk70f120m.cw10, so after building, you will know where MQX stores the libraries and header files for application usage. 9

10 Choose Project -> Build Working Set -> twrk70f120m and wait for libraries build completion 10

11 BSP Board Support Package Required Libraries PSP Processor Support Package (aka RTOS or MQX) RTCS Real-Time TCP/IP Communication Suite Shell Command Line Interface USB USB protocol stack MFS File System Optional Libraries AN3907 Using MQX Libraries 11

12 Check the file contents under folder D:\Freescale\Freescale_MQX_4_0\lib\twrk70f120m.cw10\debug again, libraries and header files are back!!! 12

13 Navigate to folder D:\Freescale\Freescale_MQX_4_0\demo\web_hvac\cw10\web _hvac_twrk70f120m Drag the.project file into CodeWarrior projects 13

14 Deselect working set and you will see the web-hvac demo 14

15 Choose Int Flash SramData Debug target Right click->build Configuration->Set Active Then hit to build the demo 15

16 K70 tower kit consists of TWR-K70FN1M TWR-SER Two elevator board: functional elevator and dummy elevator Face the side with white strip to function elevator, then insert TWR-K70FN1M and TWR-SER into functional elevator, you can insert into any of the elevator slot Put dummy elevator to the other side of TWR-K70FN1M and TWR-SER to complete the assembly 16

17 Connect USB cable to TWR-K70FN1M (J13) and laptop Click Debug configuration Select the Int Flash SramData Debug target and debug 17

18 If asked to update firmware, short J10, unplug and reinsert USB cable and click ok. Boards may already be updated. 18

19 After firmware updated, remove jumper on J10, unplug and reinsert USB cable. Install OSJTAG driver then click ok. 19

20 After downloading, code stops at main() where you see MQX entry point _mqx(). 20

21 Right click My Computer->Manage->Device Manager Find the CDC Virtual Serial Port 21

22 Click Windows Start Button->TeraTerm Then Select COMx port from previous step Then Setup->Serial Port Use , N, 1 22

23 Set COM port settings as bps 8N1 23

24 Set IP address for laptop, set it in the same subnet as TWR- K70FN1M, you can find the exact IP address setting for board in HVAC.h 24

25 Board IP address and subnet mask setting in HVAC.h 25

26 After hitting button, you will see a shell in the terminal window, you can type help to list available commands in shell You can also ping board with ping On Terminal prompt, type ping

27 Type board IP address in your web-browser /mqx.html 27

28 Click hvac demo, then choose hvac status Press SW1 or SW2 to see status change After changing temp, notice Fan/Furnace/AC settings 28

29

30 Open one of the MQX libraries, such as BSP library, then open user_config.h file All available MQX configuration options are displayed in several sheets based on its associated section BSP MQX RTCS MFS Shell USBH 30

31 Navigate folder D:\Freescale\Freescale_MQX_4_0\mqx\examples\nandflash\c w10\nandflash_twrk70f120m, drag.project file into CW10.3 Build the project and you will see error message displayed. This means you need to enable NAND flash driver using MQX configuration tool and recompile MQX libraries. 31

32 Reopen user_config.h file, select BSP sheet and change BSPCFG_ENABLE_NANDFLASH to TRUE and recompile BSP library Right click, bsp, Build Project 32

33 You are now setup to run nandflash demo on TWR-K70FN1M. This shows an example of features that can be enabled by recompiling the BSP. We will not load nandflash in today s demo, continue to the next Lab. 33

34

35 1. Select a baseline BSP to modify. 2. Clone selected BSP (and PSP) projects, configuration, and source code. 3. Prepare BSP-specific Debugger Configuration. 4. Modify BSP-specific include files. 5. Modify startup code. 6. Modify source code. 7. Create default initialization for I/O device drivers. 35

36 Existing BSP for Kinetis Kinetis 50MHz part twrk20d50m twrk21d50m Kinetis 72MHz part twrk20d72m Kinetis 100MHz part rev1.x twrk40x256 twrk53n512 twrk60n512 Kinetis 100MHz part rev2.x twrk40d100m twrk60d100m Kinetis 120MHz part twrk60f120m twrk70f120m Refer to AN Kinetis 100 MHz Rev 1.x to Rev 2.x Migration Guide for difference! Refer to AN Kinetis 100 MHz Rev 1.x to Kinetis 120MHz Migration Guide for difference! 36

37 Open BSP clone wizard Start->All Programs->Freescale MQX 4.0->MQX BSP Cloning Wizard Choose board name, MQX base and board base 37

38 Choose projects that need to be cloned and generate those projects, this may take some time. Only Select CodeWarrior 10.x, and a couple of examples Yes No Yes No 38

39 Key BSP project files bsp.h and <board_name>.h Main BSP header files, configuration constants, etc. <target_name>.lcf Linker command files (one for each memory configuration) init_hw.c (bsp_init.c in older BSPs) PLL, memory, FlexBus initialization init_bsp.c BSP timer, watchdog and IO drivers initialization init_gpio.c IO pin initialization routines called by IO drivers vectors.c Startup code (boot vector) and initial interrupt table Parameter Files init_<dev>.c Default initialization parameters structures for given IO device driver enet_ini.c Ethernet-specific initialization structures and functions mqx_init.c Default MQX initialization parameters structure Other bsp_prv.h Private structures and API functions cw.c CodeWarrior related initializations and CW startup functions overridden cw2.c MQX C entry code, main function 39

40 Navigate to folder D:\Freescale\Freescale_MQX_4_0\config\<Cloned K70 board>\cw10 and drag <Cloned K70 board>.wsd into CW10.3 Select working set for cloned K70 board 40

41 Collapse BSP files folder, all these files are supposed to be changed for a specific board. Each I/O device has a init_<dev>.c file mqx_main.c includes the _mqx() entry point OS tick interrupt routine and I/O driver installation is done in init_bsp.c We now have our own custom working set directory (.wsd) in /config And custom BSP, PSP, examples, etc! 41

42

43 Getting Started with Freescale MQX RTOS Getting Started with Runtime TAD Tool for Freescale MQX RTOS 43

44 MQX Task Aware Debugging plug-in (TAD) is an optional extension to a debugger tool which enables easy debugging of multi-tasking applications. It helps to visualize internal MQX data structures, task-specific information, I/O device drivers and other MQX context data. 44

45 The MQX TAD is available for the following platforms: Freescale CodeWarrior Classic which includes Development Studio for ColdFire version 7.x and Development Studio for Power Architecture MobileGT version 9.x. Eclipse-based CodeWarrior Development Studio version 10.x. IAR Embedded Workbench for ARM versions 5 and 6 and for ColdFire version 5 ARM-MDK uvision 4 45

46 Navigate to folder D:\Freescale\Freescale_MQX_4_0\mqx\examples\lwdemo\cw1 0\lwdemo_Customer_Board_K70 and import lwdemo Build the demo and choose debugger configuration 46

47 47

48 Select connection type you want to use in the Remote system list. If your connection is not available in the list define new one using New... menu Select Hardware and Simulator, Connection name and System type. In System tab specify Initialize target: as /lib/<board>/bsp/dbg/init_kinetis.tcl and Memory configuration: as /lib/ <board>/bsp/dbg/<board>.mem 48

49 Make sure the MQX OS Awareness is enabled in the Debugger tab. Press the Debug button in Debug configuration Window. The CodeWarrior will be switched to a debug perspective and will stop the program in the main() function. The MQX is not fully running in the main() point, so continue the application execution until the MQX is initialized to get the TAD features enabled. 49

50 TAD plug-in DLL is installed into the selected CodeWarrior tool automatically during Freescale MQX RTOS setup process. You may not need this step In case the plug-in was not properly installed (for example to a newly installed CodeWarrior studio, perform the following steps to install TAD manually: Close The CodeWarrior 10.x IDE Locate the tools/codewarrior_extensions/cw MCU v10.x directory in the Freescale MQX RTOS installation folder (by default C:/Program Files/Freescale/Freescale MQX x.y) Navigate to <install_dir>/tools/codewarrior_extensions/cw MCU v10.x directory Open the command like console and execute the command: install_cw10_plugin.bat <CW10.x install dir> Re-start the CodeWarrior 10.x IDE. 50

51 Navigate to MQX->Lightweight Events, Memory Pools, Memory Blocks To view the different TAD features 51

52 Task summary Stack usage summary 52

53 Memory pool summary 53

54 Info: Starting from MQX version 3.8.1, there is a new option for MQX debugging. With so called RuntimeTAD plug-in, the source of information displayed by TAD screens can be reconnected from a debugger to a run-time communication over serial line, CAN or direct BDM/JTAG access. 54

55

56 All Kinetis BSP projects are Processor Expert Ready and Processor Expert drivers are enabled in MQX RTOS environment You should have already imported the new Working Set (.wsd) you created previously. This is in <MQX install>\config\<clone k70 board>\cw10 56

57 Expand bsp_<clone k70 board> view Show processor expert view Generate code 57

58 Navigate to folder D:\Freescale\Freescale_MQX_4_0\demo\pe_demo\cw10\pe_d emo_customer_board_k70 and drag.project file into CW

59 Expand bsp_<clone k70 board> project view Processor Expert Driver 59

60 Click on PE components to see the properties 60

61 Processor expert gives you a easy way to add device drivers to MQX BSP In BSP example one timer and one GPIO component are included Properties of component can be changed easily, for example GPIO pin 61

62 GPIO1 component in BSP drives LED s on tower board For exact GPIO used, refer to TWR-K70F120M Tower Module user s manual 4 Input/Output Connectors and Pin Usage Table 62

63 PWM configures channel 0 in Flex Timer 0 a PWM of 4096 timer-ticks 63

64 Build PE BSP and PE demo Debug the PE demo Check PWM output on A40, LED1 will toggle 64

65 Expand processor expert project view Search ADC_LDD in components library window 65

66 Right click on the component Select add to project 66

67 Double click on ADC_LDD Select ADC1 Enable interrupt service Select ADC1_DM1 channel, this is the ADC channel connected to Potentiometer on board 67

68 Enable static sample groups Open conversion time window Select 19.23us for conversion time 68

69 Click methods Tab Click to generate code for methods 69

70 The generated ADC LDD component code. 70

71 Expand pe_demo project view Hide processor expert view 71

72 Add new ADC task in main.c 72

73 Add task function and code 73

74 Add ADC1 event function code ADC1 channel is connected to TWR-K70FN1M potentiometer 74

75 Build the pe_demo project Test the new functionality in the application and the new LDD driver 75

76

77 The code size script file analyzes the generated xmap file produced by CodeWarrior or IAR Embedded Workbench or ARM-MDK Keil build tools and creates codesize report in an HL format. Freescale MQX 4.0\tools\codesize.exe Usage examples: codesize.exe -c cwcf7 <MAP_file> codesize.exe -M -c cwcf10 <MAP_file> codesize.exe +MFS -PSP -BSP -c cwcf10 <MAP_file> codesize.exe -c cwcf10 <MAP_file1> -c cwmpc9 <MAP_file2>... 77

78 Navigate to D:\Freescale\Freescale_MQX_4_0\demo\web_hvac\cw10\web _hvac_twrk70f120m\int Flash SramData Debug, copy intflash_sramdata_d.afx.xmap to D:\Freescale\Freescale_MQX_4_0\tools 78

79 Revisit the web-hvac demo 79

80

81 The MQX performance tool is a plug-in for CW10.3 IDE which can be used to display various run-time information about an MQX application. The information can also be retrieved from performance data file saved during any debugger session from Task-aware Debugger plug-in (TAD). 81

82 The current version of the MQX Performance Tool distributed with the MQX includes the following features Timeline graph of task switches, interrupts, synchronization objects, etc. Task Stack view which displays size of stacks and used stack sizes of all tasks. CPU Usage view displaying a pie chart of CPU runtime allocation among different tasks. Performance Data viewer. 82

83 Each view can be set to Online or Offline mode: In the Online mode, the Performance Tool uses data obtained through TAD and debugger connection from the MQX kernel log. To use the Performance Tool, the MQX application must have kernel logging enabled. In the Offline mode, the performance data file saved during a previous debugger session can be analyzed with Performance Tool views. In order to save the performance data file, the application should have the kernel logging enabled. Any time during a debugger session, use the MQX->Save Performance Data menu in the CodeWarrior IDE to save the data file for later analysis. 83

84 Open main.c in lwdemo project MQX_KERNEL_LOGGING need to be defined for using performance tool 84

85 Enable kernel logging with GUI based configuration tool Note: if MQX_USE_LOGS does not show up in GUI, right click user_config.h->open With->Text Editor and add the following #define MQX_USE_LOGS 1 #define MQX_KERNEL_LOGGING 1 Rebuild BSP and PSP library 85

86 In your imported lwdemo project, open the main.c file and increase the size of the kernel log being created. This is needed in order the Performance Tool has enough entries to display a meaningful information. The default value is set quite low to ensure application runs properly also on platforms with small RAM resources. Change to a big log size. 86

87 In the MQX tools menu select Timeline view. The timeline opens in an offline mode by default with no data to be displayed. Click the Toggle offline and online mode button to switch to online mode. Toggle online or offline 87

88 The graph shows task switches in your application. Icons represent various events logged by the MQX kernel such as interrupts, synchronization calls, message sending etc. 88

89 89

90 90

91 Overview of Tower system, CodeWarrior v10.3 and MQX 4.0 Easy OS configuration with GUI based interface Using BSP clone wizard to start with BSP porting Kernel debugging with task aware debugger tool Using Processor Expert together with MQX Estimate flash and RAM size usage for MQX based application Using performance tools for MQX 91

92

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

Hands-On Workshop: Freescale MQX Drivers and BSP s

Hands-On Workshop: Freescale MQX Drivers and BSP s June 24, 2010 Hands-On Workshop: Freescale MQX Drivers and BSP s FTF-ENT-F0721 Carlos Neri / Anthony Huereca / Derek Snell Freescale Semiconductor Reg. U.S. Pat. & Tm. Off. BeeKit, BeeStack, CoreNet, the

More information

Lab Guide Rev. 1.1 TWRWIFIAR4100LAB

Lab Guide Rev. 1.1 TWRWIFIAR4100LAB TWR-WIFI-AR4100 Lab Guide Rev. 1.1 Freescale Semiconductor Inc. TWRWIFIAR4100LAB Contents 1 Purpose... 3 2 Configuring the TWR-WIFI-AR4100 Hardware... 3 3 Installing the Development Environment... 4 4

More information

Lab Guide Rev. 0 TWRWIFIG1011MILAB

Lab Guide Rev. 0 TWRWIFIG1011MILAB TWR-WIFI-G1011MI Lab Guide Rev. 0 Freescale Semiconductor Inc. TWRWIFIG1011MILAB Contents 1 Purpose... 3 2 Configure Hardware... 3 3 Configure Software... 4 4 Running the Demos... 4 4.1 Troubleshooting...

More information

Quick Start Guide for TWR-MCF5225X TOWER SYSTEM. MCF5225X ColdFire connectivity MCUs

Quick Start Guide for TWR-MCF5225X TOWER SYSTEM. MCF5225X ColdFire connectivity MCUs Quick Start Guide for TWR-MCF5225X TOWER SYSTEM MCF5225X ColdFire connectivity MCUs TOWER SYSTEM Quick Start Guide for TWR-MCF5225X Get to know the TWR-MCF5225X TOWER SYSTEM Primary Connector RS232 Port

More information

A brief intro to MQX Lite. Real work: hands-on labs. Overview, Main features and Code Size

A brief intro to MQX Lite. Real work: hands-on labs. Overview, Main features and Code Size October 2013 A brief intro to MQX Lite Overview, Main features and Code Size Real work: hands-on labs Create a new MQX-Lite project, add ConsoleIO and BitIO components Create tasks, watch the flashing

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

Keil uvision 4 Kinetis Support for Freescale MQX RTOS Release Notes

Keil uvision 4 Kinetis Support for Freescale MQX RTOS Release Notes Keil uvision 4 Kinetis Support for Freescale MQX RTOS 3.7.0 Release Notes PRODUCT: Keil uvision 4 Kinetis Support for Freescale MQX RTOS 3.7.0 PRODUCT VERSION: 1.0 DESCRIPTION: Adding support for Keil

More information

M52259DEMOKIT One-stop-shop connectivity MCU with USB, Ethernet and CAN, featuring Freescale MQX software solutions

M52259DEMOKIT One-stop-shop connectivity MCU with USB, Ethernet and CAN, featuring Freescale MQX software solutions M52259DEMOKIT Quick Start Guide ColdFire Embedded Controllers M52259DEMOKIT One-stop-shop connectivity MCU with USB, Ethernet and CAN, featuring Freescale MQX software solutions Quick Start Guide Lab Tutorials

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

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

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

Release Notes. Freescale MQX for TWR-K21D50M. Freescale MQX RTOS for TWR-K21D50M PRODUCT VERSION: 1.0 PRODUCT:

Release Notes. Freescale MQX for TWR-K21D50M. Freescale MQX RTOS for TWR-K21D50M PRODUCT VERSION: 1.0 PRODUCT: Freescale MQX 3.8.0 for TWR-K21D50M Release Notes PRODUCT: Freescale MQX RTOS 3.8.0 for TWR-K21D50M PRODUCT VERSION: 1.0 DESCRIPTION: Freescale MQX RTOS 3.8.0 standalone package for TWR-K21D50M RELEASE

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

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

Quick Start Guide TWR-PXS bit Dual-Core Power Architecture MCU for Industrial Control and Safety Applications TOWER SYSTEM

Quick Start Guide TWR-PXS bit Dual-Core Power Architecture MCU for Industrial Control and Safety Applications TOWER SYSTEM Quick Start Guide TWR-PXS3020 32-bit Dual-Core Power Architecture MCU for Industrial Control and Safety Applications TOWER SYSTEM Quick Start Guide Get to Know the TWR-PXS3020 Potentiometer (0 5V) General

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

Quick Start Guide TWR-PXR bit Power Architecture MCU for High-Performance Real-Time Applications TOWER SYSTEM

Quick Start Guide TWR-PXR bit Power Architecture MCU for High-Performance Real-Time Applications TOWER SYSTEM Quick Start Guide TWR-PXR40 32-bit Power Architecture MCU for High-Performance Real-Time Applications TOWER SYSTEM Quick Start Guide Get to Know the TWR-PXR40 User LEDs OSJTAG Interface CAN JTAG Interface

More information

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

Freescale Tower System

Freescale Tower System 8-, 16- and 32-bit MCUs/MPUs Freescale Tower System Modular development platform Overview The Freescale Tower System is a modular development platform for 8-, 16- and 32-bit MCUs and MPUs that enables

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

MQX -celeration RTOS-integrated solutions

MQX -celeration RTOS-integrated solutions QoriQ Power Architecture i.mx ColdFire mc56f8xx / 8xxx 9S12 9S08 9RS08 MQX -celeration RTOS-integrated solutions Freescale MQX Software Solutions Freescale streamlines embedded design with a complimentary

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

Quick Start Guide. TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM

Quick Start Guide. TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM Get to Know the TWR-K70F120M Primary Connector Infra-Red General Purpose Tower Plug-In (TWRPI) Socket SW3 (Reset)

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

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

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide

Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide Freescale Semiconductor, Inc. KSDKKL03UG User s Guide Rev. 1.0.0, 09/2014 Kinetis SDK Freescale Freedom FRDM-KL03Z Platform User s Guide 1 Introduction This document describes the hardware and software

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

TWR-KM34Z50MV3 Quick Start Guide

TWR-KM34Z50MV3 Quick Start Guide TWR-KM34Z50MV3 Quick Start Guide Development Kit for Kinetis KM34/33/14 MCU Families Tower System Development Board Platform Quick Start Guide Get to Know the TWR-KM34Z50MV3 Board Segment LCD Board Power

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

Quick Start Guide. TWR-MPC8309 PowerQUICC Processor with Industrial Connectivity and Protocol Off-Load Engine TOWER SYSTEM

Quick Start Guide. TWR-MPC8309 PowerQUICC Processor with Industrial Connectivity and Protocol Off-Load Engine TOWER SYSTEM TWR-MPC8309 PowerQUICC Processor with Industrial Connectivity and Protocol Off-Load Engine TOWER SYSTEM -P23345-TWR-MPC8309-o1v6.indd 1 Get to Know the TWR-MPC8309 Display Header RS232 Header SD Slot (bottom)

More information

Quick Start Guide. TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM

Quick Start Guide. TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM TWR-K70F120M High-Performance MCUs with Graphics LCD, Connectivity and Security TOWER SYSTEM Get to Know the TWR-K70F120M Primary Connector Infra-Red General Purpose Tower Plug-In (TWRPI) Socket SW3 (Reset)

More information

TWR-K70F120M Quick Start Guide

TWR-K70F120M Quick Start Guide TWR-K70F120M Quick Start Guide High-Performance MCUs with Graphics LCD, Connectivity and Security Tower System Development Board Platform Quick Start Guide freescale.com Get to Know the TWR-K70F120M Board

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

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

Quick Start Guide. TWR-P1025 QorIQ Processor with Networking and Industrial Connectivity and Protocol Offload Engine TOWER SYSTEM

Quick Start Guide. TWR-P1025 QorIQ Processor with Networking and Industrial Connectivity and Protocol Offload Engine TOWER SYSTEM TWR-P1025 QorIQ Processor with Networking and Industrial Connectivity and Protocol Offload Engine TOWER SYSTEM Get to Know the TWR-P1025 TWR-P1025 Freescale Tower System 2 The TWR-P1025 module is part

More information

Quick Start Guide TWR-S08PT60. 5-Volt S08P Family of 8-bit MCUs for Industrial and Appliance Applications TOWER SYSTEM

Quick Start Guide TWR-S08PT60. 5-Volt S08P Family of 8-bit MCUs for Industrial and Appliance Applications TOWER SYSTEM TWR-S08PT60 5-Volt S08P Family of 8-bit MCUs for Industrial and Appliance Applications TOWER SYSTEM Get to Know the TWR-S08PT60 Primary Connector Force BDM Infrared Port Reset Switch Motor Control Daughter

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

TWR K20D50M Quick Start Demo Lab Guide

TWR K20D50M Quick Start Demo Lab Guide TWR K20D50M Quick Start Demo Lab Guide Board configuration, software and development tools Rev. 2 Most Up to date lab guide an source code are available at www.freescale.com/twr k20d50m Freescale, the

More information

Lab Tutorial for TWR-S08GW64 TOWER SYSTEM. MC9S08GW64 LCD segment MCU for flow meters and energy metering applications

Lab Tutorial for TWR-S08GW64 TOWER SYSTEM. MC9S08GW64 LCD segment MCU for flow meters and energy metering applications Lab Tutorial for TWR-S08GW64 TOWER SYSTEM MC9S08GW64 LCD segment MCU for flow meters and energy metering applications TOWER SYSTEM Get to Know the TWR-S08GW64 MC9S08GW64 Tamper Switch (SW4) User Switch

More information

TWR-K21F120MA Quick Start Guide

TWR-K21F120MA Quick Start Guide TWR-K21F120MA Quick Start Guide Low-Power 32-bit ARM Cortex -M4 MCUs with Floating Point Unit, USB Connectivity and Enhanced Security Tower System Development Board Platform Quick Start Guide Get to Know

More information

Microbee Technology FTM-3SE

Microbee Technology FTM-3SE Microbee Technology FTM-3SE Freescale Tower System Compatible Field Programmable Gate Array Module TWR-K70 Demo Quick Start Guide The flexibility that programmable logic brings to hardware design has now

More information

Codewarrior for ColdFire (Eclipse) 10.0 Setup

Codewarrior for ColdFire (Eclipse) 10.0 Setup Codewarrior for ColdFire (Eclipse) 10.0 Setup 1. Goal This document is designed to ensure that your Codewarrior for Coldfire v10.0 environment is correctly setup and to orient you to it basic functionality

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 TWR-S08LL64 TOWER SYSTEM MC9S08LL64. S08 ultra-low-power LCD segment MCU

Quick Start Guide for TWR-S08LL64 TOWER SYSTEM MC9S08LL64. S08 ultra-low-power LCD segment MCU Quick Start Guide for TWR-S08LL64 TOWER SYSTEM MC9S08LL64 S08 ultra-low-power LCD segment MCU TOWER SYSTEM Get to know the TWR-S08LL64 Tower Card Connector (Secondary) LCD Display Potentiometer Mini-B

More information

Freescale MQX RTOS TWR-MCF51JF Patch. Release Notes

Freescale MQX RTOS TWR-MCF51JF Patch. Release Notes Freescale MQX RTOS 3.7.0 TWR-MCF51JF Patch Release Notes PRODUCT: MCF51JF128 Patch for Freescale MQX RTOS 3.7.0 PRODUCT VERSION: 1.0 DESCRIPTION: Adding support for MCF51JF128 to Freescale MQX RTOS 3.7.0

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

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

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F560 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Installation and Quick Start of isystem s winidea Open in DAVE. Tutorial Version 1.0, May, 2014

Installation and Quick Start of isystem s winidea Open in DAVE. Tutorial Version 1.0, May, 2014 Installation and Quick Start of isystem s winidea Open in DAVE Tutorial Version.0, May, 0 About winidea Open isysytem provides a free version of its debugger IDE called winidea Open; it can use the Segger

More information

Quick Start Guide. MED-SPO2 Pulse Oximetry Plug-in Board TOWER SYSTEM

Quick Start Guide. MED-SPO2 Pulse Oximetry Plug-in Board TOWER SYSTEM MED-SPO2 Pulse Oximetry Plug-in Board TOWER SYSTEM Get to Know the MED-SPO2 Board Finger Sensor Connector Power-on LED Linear Optional External Opamps Medical Connector 2 MED-SPO2 Freescale Tower System

More information

BASICS OF THE RENESAS SYNERGY TM

BASICS OF THE RENESAS SYNERGY TM BASICS OF THE RENESAS SYNERGY TM PLATFORM Richard Oed 2018.11 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

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

AVR32 Studio Tutorial AVR32 UC3. EVK1100 Control Panel Tutorial

AVR32 Studio Tutorial AVR32 UC3. EVK1100 Control Panel Tutorial AVR32 Studio Tutorial AVR32 UC3 Agenda What is the Control Panel? Control Panel Interfaces Description. Control Panel Use Case - Ethernet - Shell through RS232 - USB Device - USB Host Nov 19, 2007 2 Control

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

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK UNIVERSITY DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

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

Quick Start Guide. MED-SPI Spirometry Plug-in Board TOWER SYSTEM

Quick Start Guide. MED-SPI Spirometry Plug-in Board TOWER SYSTEM MED-SPI Spirometry Plug-in Board TOWER SYSTEM Get to Know the MED-SPI Board MPXV7025DP Differential Pressure Sensor Power on LED Medical Connector 2 MED-SPI Freescale Tower System The MED-SPI plug-in board

More information

Quick Start Guide. TWR-K60D100M Low-Power MCU with USB, Ethernet and Encryption TOWER SYSTEM

Quick Start Guide. TWR-K60D100M Low-Power MCU with USB, Ethernet and Encryption TOWER SYSTEM TWR-K60D100M Low-Power MCU with USB, Ethernet and Encryption TOWER SYSTEM Get to Know the TWR-K60D100M Primary Connector General Purpose Tower Plug-In (TWRPI) Socket Infra-Red SW3 (Reset) Power/OSJTAG

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

User Manual. LPC-StickView V3.0. for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick. Contents

User Manual. LPC-StickView V3.0. for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick. Contents User Manual LPC-StickView V3.0 for LPC-Stick (LPC2468) LPC2478-Stick LPC3250-Stick Contents 1 What is the LPC-Stick? 2 2 System Components 2 3 Installation 3 4 Updates 3 5 Starting the LPC-Stick View Software

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

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack

Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB MC9S08MM128. Electrocardiogram (EKG) with Freescale USB stack Lab Tutorial for TWR-S08MM128-KIT TOWER SYSTEM LAB 1 MC9S08MM128 Electrocardiogram (EKG) with Freescale USB stack TOWER SYSTEM Introduction This lab is a step-by-step guide to run the EKG demo. The EKG

More information

BASICS OF THE RENESAS SYNERGY PLATFORM

BASICS OF THE RENESAS SYNERGY PLATFORM BASICS OF THE RENESAS SYNERGY PLATFORM TM Richard Oed 2017.12 02 CHAPTER 9 INCLUDING A REAL-TIME OPERATING SYSTEM CONTENTS 9 INCLUDING A REAL-TIME OPERATING SYSTEM 03 9.1 Threads, Semaphores and Queues

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

Figure 1. Simplicity Studio

Figure 1. Simplicity Studio SIMPLICITY STUDIO USER S GUIDE 1. Introduction Simplicity Studio greatly reduces development time and complexity with Silicon Labs EFM32 and 8051 MCU products by providing a high-powered IDE, tools for

More information

Supporting New Toolchains with Freescale MQX RTOS Michal Princ and Michal Hanak Freescale MSG Software Team Roznov

Supporting New Toolchains with Freescale MQX RTOS Michal Princ and Michal Hanak Freescale MSG Software Team Roznov Freescale Semiconductor Application Note AN4190 Rev. 0, 08/2010 Supporting New Toolchains with Freescale MQX RTOS by: Michal Princ and Michal Hanak Freescale MSG Software Team Roznov 1 Introduction This

More information

MQX RTOS for Kinetis SDK Release Notes

MQX RTOS for Kinetis SDK Release Notes Freescale Semiconductor Document Number: MQXKSDK120RN Release Notes Rev. 0, 04/2015 MQX RTOS for Kinetis SDK 1.2.0 Release Notes 1 Read Me These are the release notes for the Freescale MQX RTOS for Kinetis

More information

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications

Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128. The industry s most complete solution for portable medical applications Quick Start Guide for TWR-S08MM128-KIT TOWER SYSTEM MC9S08MM128 The industry s most complete solution for portable medical applications TOWER SYSTEM Get to Know the TWR-S08MM128-KIT BDM Interface for MC9S08MM128

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

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK LIN DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent damage

More information

TWR-K53N512 Quick Start Guide

TWR-K53N512 Quick Start Guide TWR-K53N512 Quick Start Guide Low-Power MCU with Analog, USB and Segment LCD Tower System Development Board Platform Quick Start Guide Get to Know the TWR-K53N512 Primary Connector Infrared General-Purpose

More information

Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform

Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform Freescale Semiconductor, Inc. Application Note Document Number: AN5069 Rev. 0, 01/2015 Integrate TWR-EPD Software with MQX RTOS Based on the TWR-K21F120M Platform 1 Introduction This application note describes

More information

Quick Start Guide. TWR-VF65GS10 For Vybrid Controller Solutions Based on ARM Cortex -A5 and Cortex-M4 Processors with the DS-5 Toolchain TOWER SYSTEM

Quick Start Guide. TWR-VF65GS10 For Vybrid Controller Solutions Based on ARM Cortex -A5 and Cortex-M4 Processors with the DS-5 Toolchain TOWER SYSTEM TWR-VF65GS10 For Vybrid Controller Solutions Based on ARM Cortex -A5 and Cortex-M4 Processors with the DS-5 Toolchain TOWER SYSTEM Get to Know the TWR-VF65GS10 Dual Quad SPI K20 JTAG Header UART Selection

More information

LAB #1: The CSM12C32 Module and PBMCUSLK Project Board

LAB #1: The CSM12C32 Module and PBMCUSLK Project Board CS/EE 5780/6780 Handout #1 Spring 2007 Myers LAB #1: The CSM12C32 Module and PBMCUSLK Project Board Lab writeup is due to your TA at the beginning of your next scheduled lab. Don t put this off to the

More information

NXP Semiconductors, 6501 William Cannon Drive West, Austin, Texas Kinetis SDK 2.0 Transition Guide Rev.

NXP Semiconductors, 6501 William Cannon Drive West, Austin, Texas Kinetis SDK 2.0 Transition Guide Rev. NXP Semiconductors, 6501 William Cannon Drive West, Austin, Texas 78735 www.nxp.com Kinetis SDK 2.0 Transition Guide Rev. 2 02/2016 Contents 1 Overview... 3 2 New Features in Kinetis SDK 2.0... 3 3 Kinetis

More information

Freescale Semiconductor Inc. TWRWIFIGS1500MLAB. TWR-WIFI-GS1500M Lab Guide Rev. 1

Freescale Semiconductor Inc. TWRWIFIGS1500MLAB. TWR-WIFI-GS1500M Lab Guide Rev. 1 Freescale Semiconductor Inc. TWRWIFIGS1500MLAB TWR-WIFI-GS1500M Lab Guide Rev. 1 Contents 1 Purpose... 3 2 Configure Hardware... 4 3 Configure Software... 6 4 Running the Demos... 7 5 Troubleshooting...

More information

IAR EWARM Quick Start for. Holtek s HT32 Series Microcontrollers

IAR EWARM Quick Start for. Holtek s HT32 Series Microcontrollers IAR EWARM 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 IAR EWARM... 6 2 System Requirements...

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK C8051F330 DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Contents. About This Guide... 2 Audience... 2 Revision History... 2 Conventions... 3 Definitions, Acronyms, and Abbreviations... 3

Contents. About This Guide... 2 Audience... 2 Revision History... 2 Conventions... 3 Definitions, Acronyms, and Abbreviations... 3 Contents About This Guide................................. 2 Audience............................................. 2 Revision History....................................... 2 Conventions..........................................

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

Quick Start Guide (QSG) for - FRDM-KEAZ128 - FRDM-KEAZ64 - FRDM-KEAZN32

Quick Start Guide (QSG) for - FRDM-KEAZ128 - FRDM-KEAZ64 - FRDM-KEAZN32 Quick Start Guide (QSG) for - FRDM-KEAZ128 - FRDM-KEAZ64 - FRDM-KEAZN32 Ultra-Reliable MCUs for Industrial and Automotive www.freescale.com/frdm-kea External Use 0 Contents: Quick Start Package Get to

More information

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick

Figure 1. Proper Method of Holding the ToolStick. Figure 2. Improper Method of Holding the ToolStick TOOLSTICK UNIVERSITY DAUGHTER CARD USER S GUIDE 1. Handling Recommendations To enable development, the ToolStick Base Adapter and daughter cards are distributed without any protective plastics. To prevent

More information

Lab 1 Introduction to Microcontroller

Lab 1 Introduction to Microcontroller Lab 1 Introduction to Microcontroller Feb. 2016 1 Objective 1. To be familiar with microcontrollers. 2. Introducing LPC2138 microcontroller. 3. To be familiar with Keil and Proteus software tools. Introduction

More information

STM32L100C-Discovery Board Projects

STM32L100C-Discovery Board Projects STM32L100C-Discovery Board Projects Keil Microcontroller Development Kit for ARM (MDK-ARM) Version 5.xx As illustrated in Figure 1, MDK-ARM Version 5.xx (µvision5) comprises a set of core functions: Integrated

More information

ToolStick-EK TOOLSTICK USER S GUIDE. 1. Kit Contents. 2. ToolStick Overview. Green and Red LEDs. C8051F321 provides USB debug interface.

ToolStick-EK TOOLSTICK USER S GUIDE. 1. Kit Contents. 2. ToolStick Overview. Green and Red LEDs. C8051F321 provides USB debug interface. TOOLSTICK USER S GUIDE 1. Kit Contents The ToolStick kit contains the following items: ToolStick Silicon Laboratories Evaluation Kit IDE and Product Information CD-ROM. CD content includes: Silicon Laboratories

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

Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of

Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of Freescale, the Freescale logo and CodeWarrior are trademarks of Freescale Semiconductor, Inc., Reg. U.S. Pat. & Tm. Off. Xtrinsic is a trademark of Freescale Semiconductor, Inc. All other product or service

More information

Using Code Composer Studio IDE with MSP432

Using Code Composer Studio IDE with MSP432 Using Code Composer Studio IDE with MSP432 Quick Start Guide Embedded System Course LAP IC EPFL 2010-2018 Version 1.2 René Beuchat Alex Jourdan 1 Installation and documentation Main information in this

More information

User's Manual Rev. 1. Freescale Semiconductor Inc. TWRS08UNIVUM

User's Manual Rev. 1. Freescale Semiconductor Inc. TWRS08UNIVUM TWR-S08UNIV User's Manual Rev. 1 Freescale Semiconductor Inc. TWRS08UNIVUM Table of Contents 1. TWR-S08UNIV and TWR-S08DC Overview... 4 1.1 Contents... 5 1.2 Features... 5 2. Getting Started... 7 2.1 Reference

More information

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS

CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS CodeWarrior Development Studio for etpu v10.x Quick Start SYSTEM REQUIREMENTS Hardware Operating System Software Disk Space Intel Pentium 4 processor, 2 GHz or faster, Intel Xeon, Intel Core, AMD Athlon

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

Kinetis KV5x Real-Time Control MCUs with Ethernet Up to 1 MB Flash and 256 KB SRAM

Kinetis KV5x Real-Time Control MCUs with Ethernet Up to 1 MB Flash and 256 KB SRAM Freescale Semiconductor, Inc. Document Number: KV5xPB Product Brief Rev. 0, 02/2015 Kinetis KV5x Real-Time Control MCUs with Ethernet Up to 1 MB Flash and 256 KB SRAM 1. Kinetis V family introduction Kinetis

More information

TWR-KE18F User's Guide

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

More information

Creating a New USB project with KSDK and Processor Expert support in KDS

Creating a New USB project with KSDK and Processor Expert support in KDS Freescale Semiconductor Creating a New USB project with KSDK and Processor Expert support in KDS By: Technical Information Center Developing an USB application can involve to include some extra features

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

Getting Started in C Programming with Keil MDK-ARM Version 5

Getting Started in C Programming with Keil MDK-ARM Version 5 Getting Started in C Programming with Keil MDK-ARM Version 5 Reason for Revision This document was revised for Keil MDK-ARM v5.14 on February 18, 2015. This document was revised for MSP432 LaunchPad on

More information

Getting Started in C Programming with Keil MDK-ARM Version 5

Getting Started in C Programming with Keil MDK-ARM Version 5 Getting Started in C Programming with Keil MDK-ARM Version 5 Reason for Revision This document was revised for Keil MDK-ARM v5.14 on February 18, 2015. This document was revised for MSP432 LaunchPad on

More information

HVP-56F82748 Quick Start Guide

HVP-56F82748 Quick Start Guide HVP-56F82748 Quick Start Guide Freescale Controller Card High Voltage Development Platform Quick Start Guide Get to Know the HVP-56F82748 USB Mini for Power Supply Isolated Power Supply MC56F82748 MCU

More information

AN HI-3200 Avionics Data Management Engine Evaluation Board Software Guide

AN HI-3200 Avionics Data Management Engine Evaluation Board Software Guide August 12, 2011 AN - 166 HI-3200 Avionics Data Management Engine Evaluation Board Software Guide Introduction This application note provides more detail on the HI-3200 demo software provided in the Holt

More information