CSR102x Starter Development Kit

Size: px
Start display at page:

Download "CSR102x Starter Development Kit"

Transcription

1 CSR102x Starter Development Kit Bluetooth Low Energy Single Mode SoC Alan Hay, Applications Engineer Qualcomm Technologies International, Ltd.

2 Kit overview Focus for today s workshop CSR1025 SoC Bluetooth low energy Starter Development Kit DK-CSR A 1 What s in the box 2 Hands-on with the Starter Development Kit 3 Hands-on with the Starter Development Kit

3 Kit Contents Starter Board with Radio Module USB Cable Flat Programming Cable Prototyping Jumper Cables

4 Board Details Starter Development Kit Board Overview Powered from USB or Coin Cell Simple UI (Button and LED) Breakout pins (J9, J12) available for reduced development time Can be configured as a programmer for external CSR102x boards using External Debug Connector plus the flat programming connector

5 Board Details Mini-USB Connector 7 PIO Breakout J9 2 Power Select 8 PIO Breakout J CR2032 coin cell holder Flat Cable Connector 9 10 Simple UI Radio Module USB-SPI Debug IC 11 Power Isolation Jumpers SPI Interface Isolation 11

6 CSR1025 Radio Module 1 Printed F Antenna 2 Crystal Oscillator 4 3 Power Supply CSR1025 SoC 5 Opt. External Flash 3 5

7 Power Options and Current Measurement Jumper selectable between USB (3V3 nominal) and CR2032 coin cell. Replacing jumper with an ammeter inline allows accurate measurement of full system current. To achieve an accurate SLEEP current measurement it is usually necessary to remove the SPI jumpers, as Debug SPI activity can interfere with SLEEP states.

8 Highlights Full Software Development Kit (SDK) Includes access to all tools Includes all example profiles and applications PIO headers to allow connection of sensors, daughter boards, and rapid prototyping On-board SPI-Debug and programmer Option of battery or USB power Competitive price point of USD $99

9 Hands-On with the Starter Development Kit Bluetooth Low Energy Single Mode SoC

10 Hands On step by step All attendees should have already downloaded and installed the SDK, along with the Health and Fitness package. The following guide will demonstrate how to compile and program an application for the Starter Development Kit. Compile and Download an example application Connect to Host Using Simple UI

11 Connecting Hardware Remove the Target board from the anti-static packaging Connect the smaller connector of the mini-usb cable to the Target board USB port Connect the other end of the mini-usb cable to a free USB port on the development PC The device drivers necessary to connect to the target board are installed with the SDK and drivers should load automatically when connected to the PC

12 Customising software Some customisation of the project is required Prevents multiple boards being programmed with same Bluetooth Address Ensures any board specific settings are preserved Enables you to identify which board is yours

13 Bluetooth Address Sticker on base of Starter Development Kit S/N: Xtal Trim PPM : B-03F377

14 Bluetooth Address HTF FILE

15 Bluetooth Address S/N: Xtal Trim PPM : B-03F377 Label Format BDA: 002 : 5B : 03F377 HTF file format bdaddr = (0x F377, 0x 5B 03, 0x 02 )

16 Bluetooth Address S/N: Xtal Trim PPM : B-03F377 Label Format BDA: 002 : 5B : 03F377 HTF file format bdaddr = (0x F377, 0x 5B 03, 0x 02 )

17 Bluetooth Address S/N: Xtal Trim PPM : B-03F377 Label Format BDA: 002 : 5B : 03F377 HTF file format bdaddr = (0x F377, 0x 5B 03, 0x 02 )

18 Bluetooth Address S/N: Xtal Trim PPM : B-03F377 Label Format BDA: 002 : 5B : 03F377 HTF file format bdaddr = (0x F377, 0x 5B 03, 0x 02 )

19 Bluetooth Address S/N: Xtal Trim PPM : B-03F377 Label Format BDA: 002 : 5B : 03F377 HTF file format bdaddr = (0x F377, 0x 5B 03, 0x 02 )

20 Hands On step by step hr_sensor.htf ############################## subsystem=ble device=smem store=0x000f # Remove the store id from the smem that is added by the SDK. app_store_id = # Bluetooth device address bdaddr = {0xF377, 0x5B03, 0x02} # Sleep mode sleep_mode = sleep_mode_deep # Battery Threshold battery_threshold = 2100

21 Hands On step by step DO NOT SKIP THIS STEP otherwise your system may have the same address as someone else in the workshop and may not work properly!

22 Hands On step by step /* Macro for the device name */ #define DEVICE_NAME "CSR HR Sensor" Change this to any unique string For example Your name plus the board Serial Number. /* Macro for the device name */ #define DEVICE_NAME HR Sensor " DO NOT SKIP THIS STEP otherwise your system may have the same address as someone else in the workshop and may not work properly!

23 Project Settings Verify Project Settings Build Type = Release Erase NVM = Yes Erase MTP = No CS Key File = hr_sensor.htf Create OTA Update Files = Yes

24 Compile Application No further customisation should be necessary. We are now ready to program the board Compile the Heart Rate Project Download the Heart Rate project to the hardware

25 Compile Application Click on Build in the menu bar. Select Build Active Project or press F7 short-cut key. This builds all the files included in the Active project from the current Workspace into an application image for the target board. The build is incremental, minimum set of builds are performed to reflect changes to source files and configurations. The target board should remain connected during compilation.

26 Build and Program Project Window Message Area If any errors occur they will be displayed here

27 Download Application to Hardware Select Run from the Debug menu or press the F5 short-cut key. At this point the Heart Rate application will be running on the hardware. It will stop advertising after a couple of minutes The button can be connected up to PIO11 with a jumper cable to re-enable adverts (this can also be achieved by power cycling the board via the mini USB cable) For more details on the heart rate application see the Heart Rate Sensor Application Note in the project source directory.

28 CSR8510 Bluetooth Dongle In order to connect to the development kit you need a suitable host. The Profile Demonstrator software is supplied as part of the SDK. This requires a compatible Bluetooth dongle to communicate with the peripheral device. The CSR8510 dongle is available to perform this function. The drivers for this dongle are supplied with the SDK. Q

29 Profile Demonstrator Plug in Dongle and allow it to enumerate Run CSR µenergy Profile Demonstrator Click on Discover Devices

30 Profile Demonstrator Locate your device name on the list Select Connect to Device

31 End to End Data exchange

32 Connecting the UI Utilising the Button and LED The Heart Rate Sensor application includes a basic UI by default PIO 11 = Button (Wake / Clear Pairing) PIO 15 = Buzzer/LED status indicator Use the test cables supplied with the kit to connect these together as shown. Press Button to wake the HR sensor Press and Hold button for 5s to clear pairing LED flashes when pairing is cleared

33 OTA (Over The Air) Update Upgrading software over the air Lets make a simple change to the software - make the UI pulse when a new value is transmitted. SoundBuzzer(buzzer_beep_short); (In our case we have connected the LED to the UI indicator pin). In main_app.c, find hrmeastimerhandler (used to periodically send an update to the host) Add the SoundBuzzer call just before SendHRMeasurement();

34 Compile Application Rebuild the Heart Rate Project. This time DO NOT program the board.

35 OTA (Over The Air) Update Run the Over The Air Update software Requires the CSR8510 Dongle Open the software from the Start Menu Or run the EXE from the demo directory in the install path Ensure that you have cleared any existing pairing from your HR sensor board (press the button for 5 sec and observe the LED flash).

36 OTA (Over The Air) Update Configure update Click Select Image File and browse to the output directory of the heart rate project C:\CSR_uEnergy_SDK-3.0.3\apps\ hr_sensor\depend_release_csr102x_a05 Select the Binary file (.bin) hr_sensor.app.1.bin

37 OTA (Over The Air) Update Scan for Target Device Scan for your board (Make sure you are upgrading your own board) Select the your board ID from the list of devices Click the UPGRADE Button Battery Voltage Threshold Scanning Window Upgrade Button Status Window

38 OTA (Over The Air) Update Update in progress When the update is in progress, the software will attempt to connect to the OTA service on the board. If the protocol confirms that the receiving unit is compatible with the binary file to transmit, then the upgrade process will begin. When in progress the %completion in the status window plus a progress bar will indicate progress. This update happens in the background the normal operation is not affected When complete, the system re-boots into the new image.

39 Reconnect Profile Demonstrator Reconnect to the board from Profile Demonstrator You must clear pairing on your board (press and hold the button for 5 seconds) Once connected, if the application update has been successful you should now see the LED flash every Connection Interval whilst the board is connected to the Profile Demonstrator software.

40 Further Information What to do next There are many more profiles available all of which can be used with the Starter Development Kit

41 Qualcomm Developer Network Downloads available Overview of chipsets and development kits available. Training slides including: Introduction to Bluetooth Low Energy Product Line Overview Hardware Overview Introduction to CSRmesh OTAU Overview SDK Overview

42 thank you!

43 Activation Code On the side of the Development Kit box, there will be a sticker, on which can be found: Serial Number and most importantly Activation Code

44 Activation Code The activation code (located on the packaging of the development kit) allows you to download new software and updates to the SDK Register on: csr102x-activation and use activation code to receive access to the Qualcomm Bluetooth Low Energy SDK

45 Install SDK This example shall utilise the Heart Rate example application, which is part of the Health and Fitness application package. Therefore in order to proceed both of the following must be installed uenergy SDK v3.0.3 (or later) CSR uenergy SDK Health and Fitness Package (or later) These can be downloaded from It is recommended that all default options be accepted.

CSR102x Starter Development Kit

CSR102x Starter Development Kit CSR102x Starter Development Kit Bluetooth Low Energy Single Mode SoC CSR102x is a product of Qualcomm Technologies International, Ltd. Qualcomm Bluetooth Low Energy Terminology clarification In this document

More information

CSR102x Bluetooth Smart Product Line Overview

CSR102x Bluetooth Smart Product Line Overview CSR102x Bluetooth Smart Product Line Overview Speaker name Speaker title Speaker employing entity Date CSR102x Overview Qualcomm Bluetooth Low Energy Terminology clarification In this document you will

More information

LM53X Development and Evaluation Product Family

LM53X Development and Evaluation Product Family Development and Evaluation Family Revised Datasheet Version 13/MAR/2018 1.0 Overview The is the development and evaluation product family for the LM930 / LM931 Bluetooth low energy module. A great starting

More information

LM931 Bluetooth low energy Module

LM931 Bluetooth low energy Module Bluetooth low energy Module Revised 24/JAN/2017 2.50mm 1m 10.1 m m 22m Features Bluetooth v4.1 specification I2C and UART 14 ma (at 0 dbm) Current Consumption (Tx Mode) 9 digital and 3 analogue (10-bit

More information

LM930 Bluetooth low energy Module (with U.FL Connector) Standalone (With Embedded Bluetooth v4.1 Stack)

LM930 Bluetooth low energy Module (with U.FL Connector) Standalone (With Embedded Bluetooth v4.1 Stack) Bluetooth low energy Module (with U.FL Connector) Revised 24/JAN/2017 m.11m 10 2.50mm m 22m Features Bluetooth v4.1 specification I2C and UART 14 ma (at 0 dbm) Current Consumption (Tx Mode) 9 digital and

More information

LM930 Bluetooth low energy Module (with IPEX Connector) Standalone (With Embedded Bluetooth v4.1 Stack)

LM930 Bluetooth low energy Module (with IPEX Connector) Standalone (With Embedded Bluetooth v4.1 Stack) Bluetooth low energy Module (with IPEX Connector) Revised 25/AUG/2017 m.11m 10 2.50mm m 22m Features Bluetooth v4.1 specification I2C and UART 14 ma Current Consumption (at 0 dbm Tx Output Power) 9 digital

More information

LM931 Bluetooth low energy Module Standalone (With Embedded Bluetooth v4.1 Stack)

LM931 Bluetooth low energy Module Standalone (With Embedded Bluetooth v4.1 Stack) Bluetooth low energy Module Revised 04/JUL/2018 Version v1.2 2.50mm 1m 10.1 m m 22m Features Bluetooth v4.1 specification I2C and UART 14 ma Current Consumption (at 0 dbm Tx Output Power) 9 digital and

More information

Use of ISP1507-AL Evaluation Boards

Use of ISP1507-AL Evaluation Boards Use of ISP1507-AL Evaluation Boards Application Note AN181103 Introduction Scope This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1507-AL,

More information

LM961 Bluetooth Dual Mode Module Standalone (With Embedded Bluetooth v4.1 Stack)

LM961 Bluetooth Dual Mode Module Standalone (With Embedded Bluetooth v4.1 Stack) Bluetooth Dual Mode Module Revised 13/DEC/2017 18.9mm 2.55mm 12.71mm Features Bluetooth v4.1 specification (Dual Mode) Fully integrated module with no additional components required Class 1 Tx Out Power

More information

Bluegiga Bluetooth Smart Software v.1.3 5/28/2014 1

Bluegiga Bluetooth Smart Software v.1.3 5/28/2014 1 Bluegiga Bluetooth Smart Software v.1.3 5/28/2014 1 Table of Contents Introduction to the Bluetooth Smart Software Bluetooth Smart Software v.1.3 5/28/2014 2 Introduction to Bluetooth Smart Software Bluetooth

More information

Introduction to Bluetooth Low Energy

Introduction to Bluetooth Low Energy Introduction to Bluetooth Low Energy Qualcomm Bluetooth Low Energy Terminology clarification In this document you will notice a number of references are made to Qualcomm Bluetooth Low Energy SDK. While

More information

nblue TM BR-MUSB-LE4.0-S2A (CC2540)

nblue TM BR-MUSB-LE4.0-S2A (CC2540) Page 1 of 5 Copyright 2002-2014 BlueRadios, Inc. Bluetooth 4.0 Low Energy Single Mode Class 1 SoC USB Serial Dongle nblue TM BR-MUSB-LE4.0-S2A (CC2540) AT HOME. AT WORK. ON THE ROAD. USING BLUETOOTH LOW

More information

Figure 26 CC Debugger Interface

Figure 26 CC Debugger Interface Figure 26 CC Debugger Interface Once the CC Debugger is set up with the status indicator LED showing green, you are ready to either read or write a hex file from the board, or to start debugging a project

More information

Use of ISP1807-LR Evaluation Boards

Use of ISP1807-LR Evaluation Boards Use of ISP1807-LR Evaluation Boards Application Note AN181104 Introduction Scope This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1807-LR,

More information

CSR µenergy. xide. User Guide. Issue 12. Page 1 of 30 Cambridge Silicon Radio Limited CS UGP12

CSR µenergy. xide. User Guide. Issue 12. Page 1 of 30 Cambridge Silicon Radio Limited CS UGP12 CSR µenergy xide User Guide Issue 12 Page 1 of 30 Document History Revision Date History 1 07 MAR 11 Original publication of this document 2 20 JUL 11 Editorial updates 3 20 MAR 12 Updated for v1.4 4 22

More information

This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1302-BS.

This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module ISP1302-BS. Application Note AN160301 Use of -BS Development Kit Introduction Scope This document gives details on hardware and software for using and testing Insight SiP Bluetooth Low Energy module -BS. Contents

More information

Version: C Issued Date: 2018/11/08. User Guide ( 簡易使用手冊 ) Demo Board for MDBT42Q-AT / PAT. 韌體版本 (FW Revision): 1.3

Version: C Issued Date: 2018/11/08. User Guide ( 簡易使用手冊 ) Demo Board for MDBT42Q-AT / PAT. 韌體版本 (FW Revision): 1.3 Version: C Issued Date: 2018/11/08 User Guide ( 簡易使用手冊 ) 產品名稱 (Product): 產品型號 (Model No.): Demo Board for MDBT42Q-AT / PAT MDBT42Q AT UART S 韌體版本 (FW Revision): 1.3 Index 1. Introduction... 3 1.1. Contents

More information

Bluetooth Light Gun. Please also see the Aimtrak Setup Guide at : Setup Guide.pdf

Bluetooth Light Gun. Please also see the Aimtrak Setup Guide at :   Setup Guide.pdf Bluetooth Light Gun Please also see the Aimtrak Setup Guide at : www.ultimarc.com/aimtrak Setup Guide.pdf 1 Contents Section 1: Introduction... 3 Features... 3 Bluetooth SIG Qualification.... 3 Section

More information

QSG107: SLWSTK6101A Quick-Start Guide

QSG107: SLWSTK6101A Quick-Start Guide QSG107: SLWSTK6101A Quick-Start Guide SLWSTK6101A Blue Gecko Bluetooth Smart Module Wireless Starter Kit Quick-Start Guide The Blue Gecko Bluetooth Smart Wireless Starter Kit is meant to help you evaluate

More information

BLE121LR Bluetooth Smart Long Range Module 5/12/2014 1

BLE121LR Bluetooth Smart Long Range Module 5/12/2014 1 BLE121LR Bluetooth Smart Long Range Module 5/12/2014 1 Table of Contents Key Features Benefits BLE121LR Overview Bluetooth Smart Software Certifications Development Tools Use Cases 5/12/2014 2 Key Features

More information

EVALUATION BOARD MANUAL EBSLSN Series. EVALUATION KIT MANUAL EKSLSN Series

EVALUATION BOARD MANUAL EBSLSN Series. EVALUATION KIT MANUAL EKSLSN Series EVALUATION BOARD MANUAL EBSLSN Series EVALUATION KIT MANUAL EKSLSN Series for EYSLSN Series Bluetooth R low energy Module 1/8 Introduction This evaluation board is applicable for Taiyo Yuden s Bluetooth

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

Quick Start Guide for the Turbo upsd DK3300-ELCD Development Kit- RIDE

Quick Start Guide for the Turbo upsd DK3300-ELCD Development Kit- RIDE Contents: Circuit Board upsd DK3300-ELCD Development Board with a upsd3334d-40u6 MCU with Enhanced Graphic LCD RLINK-ST, a USB-based JTAG adapter from Raisonance for debugging with Raisonance Integrate

More information

Adesto Serial Flash Demo Kit: Quick Start Guide

Adesto Serial Flash Demo Kit: Quick Start Guide Adesto Serial Flash Demo Kit: Quick Start Guide Introduction: This document will provide a simple step-by-step description of how to make use of the Adesto Serial Flash Demo Kit which is comprised of an

More information

PAN1740 Design Guide

PAN1740 Design Guide 1 of 14 PAN1740 2 of 14 TABLE OF CONTENTS 1. Scope of this Document... 3 2. Key benefits when using PAN1740... 3 3. Bluetooth Low Energy... 3 4. Description PAN1740... 4 5. Block Diagram PAN1740 Module...

More information

Bluetooth Low Energy Portfolio

Bluetooth Low Energy Portfolio Bluetooth Low Energy Portfolio February 2016 - Page 1 Price Smart Platform 3 Platforms based on BLE Combo Node Connectivity ISP0900 series Intelligent Node ISP1300 series ISP091201 ISP1500 series ISP130301

More information

Air Hockey v7.0 Controller PCB Air Hockey 10v Transformer

Air Hockey v7.0 Controller PCB Air Hockey 10v Transformer KNOWN ISSUES SORTED BY BOARD REVISION DYNAMO HOCKEY PCBs LISTED IN THIS WORKSHEET are no longer available for purchase or serviced by the manufacturer. Most tables can be upgraded to Dynamo s latest v7.0

More information

The BlueNRG-1, BlueNRG-2 BLE OTA (over-the-air) firmware upgrade

The BlueNRG-1, BlueNRG-2 BLE OTA (over-the-air) firmware upgrade Application note The BlueNRG-1, BlueNRG-2 BLE OTA (over-the-air) firmware upgrade Introduction This application note describes the BlueNRG-1, BlueNRG-2 over-the-air (OTA) firmware upgrade procedures running

More information

AN QN902x Quick Start Guide. Document information

AN QN902x Quick Start Guide. Document information Rev. 3 17 April 2018 Application note Document information Info Keywords Abstract Content mini DK, SDK, installation, working mode, download, NVDS configuration, connect, GPIO configuration This application

More information

QSG107: SLWSTK6101A/B Quick-Start Guide

QSG107: SLWSTK6101A/B Quick-Start Guide QSG107: SLWSTK6101A/B Quick-Start Guide Note: The contents of this document are deprecated. Please see QSG139: Bluetooth Development with Simplicity Studio for current instructions. The Blue Gecko Bluetooth

More information

MBN52832DK Rev A User Guide

MBN52832DK Rev A User Guide MBN52832DK Rev A User Guide Version: 0.1 Release Date: October 27, 2016 Murata reserves the right to make changes in specifications at anytime and without notice. The information furnished in this user

More information

QSG107: SLWSTK6101A/B Quick-Start Guide

QSG107: SLWSTK6101A/B Quick-Start Guide QSG107: SLWSTK6101A/B Quick-Start Guide The Blue Gecko Bluetooth Smart Wireless Starter Kit is meant to help you evaluate Silicon Labs Blue Gecko Bluetooth Smart modules and get you started with your own

More information

kcenergy User Guide Introduction Hardware

kcenergy User Guide Introduction Hardware Introduction Our kcenergy firmware provides an embedded Bluetooth Low Energy (BLE) system on a small footprint preengineered module. The firmware is written for the CSR1010 chipset. kcenergy provides the

More information

AN4869 Application note

AN4869 Application note Application note BlueNRG-1, BlueNRG-2 BLE OTA (over-the-air) firmware upgrade Introduction This application note describes the BlueNRG-1 over-the-air (OTA) firmware upgrade procedures running on top of

More information

WSM-BLE241 DK Rev C User Guide

WSM-BLE241 DK Rev C User Guide WSM-BLE241 DK 801107 Rev C User Guide Version: 1.0 Release Date: August 18, 2017 Murata reserves the right to make changes in specifications at anytime and without notice. The information furnished in

More information

Abstraction. Terasic Inc. Bluetooth_Remote_Control

Abstraction. Terasic Inc. Bluetooth_Remote_Control Abstraction This application note provides details on how to achieve human-computer interaction (HCI) with Android device and Terasic A-Cute Car via Bluetooth using a module, Terasic BTS-TMD. The following

More information

Bluetooth Low Energy CC2540/41 Mini Development Kit User s Guide

Bluetooth Low Energy CC2540/41 Mini Development Kit User s Guide Bluetooth Low Energy CC2540/41 Mini Development Kit User s Guide Document Number: SWRU270C Document Version: 1.2 Development Kit Part Number: CC2540DK-MINI, CC2541DK-MINI TABLE OF CONTENTS 1. REFERENCES...

More information

Quick-Start Guide. BNS Solutions. QSK62P Plus

Quick-Start Guide. BNS Solutions. QSK62P Plus BNS Solutions Quick-Start Guide QSK62P Plus RS-232 Port Link LED 8-character x 2-line LCD Expansion Port (2) Reset Switch Power LED Thermistor I/O Ring (4) M16C MCU Analog Adjust Pot MCU Crystal Expansion

More information

kcenergy User Guide DRAFT EDITION Introduction Serial Data Communications Hardware Supported Bluetooth Profiles

kcenergy User Guide DRAFT EDITION Introduction Serial Data Communications Hardware Supported Bluetooth Profiles DRAFT EDITION Introduction Our kcenergy firmware provides an embedded Bluetooth Low Energy (BLE) system on a small footprint preengineered module. The firmware is written for the CSR1010 chipset. kcenergy

More information

TBox-Radio & WIRC photocell User manual

TBox-Radio & WIRC photocell User manual Kit TBox-Radio & WIRC photocells 1. TBox-Radio 1.1 Appearance Radio antenna 2 x Photocells Jack Inputs Ext GPS antenna (TBox-4x only) 4 Group / ID LEDs Radio Config button 2 inputs LEDs Sync Jack RS232

More information

MDP Based Face Detection Demonstration User Guide

MDP Based Face Detection Demonstration User Guide FPGA-UG-02047 Version 1.0 May 2018 Contents Acronyms in This Document... 3 1. Introduction... 4 2. Functional Description... 4 3. Demo Setup... 5 4. Programming the Face Detection Demo... 7 5. Running

More information

Bluetooth Smart Development with Blue Gecko Modules. Mikko Savolainen October 2015

Bluetooth Smart Development with Blue Gecko Modules. Mikko Savolainen October 2015 Bluetooth Smart Development with Blue Gecko Modules Mikko Savolainen October 2015 Agenda Bluetooth & the IoT BGM111 Bluetooth Smart Module Blue Gecko Bluetooth Smart Software Software Development Flow

More information

LM068 Bluetooth v4.1 Dual Mode RS232 Serial Adapter Standalone (With Embedded Bluetooth v4.1 Stack)

LM068 Bluetooth v4.1 Dual Mode RS232 Serial Adapter Standalone (With Embedded Bluetooth v4.1 Stack) Bluetooth v4.1 ual Mode RS232 Serial Adapter Revised 13/MAR/2018 atasheet Version 46.3mm 1.0 16mm 34mm Features World s smallest Bluetooth Serial Adapter Low Power Consumption Bluetooth v4.1 specification

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

HARDWARE REFERENCE IMM-NRF51822

HARDWARE REFERENCE IMM-NRF51822 HARDWARE REFERENCE IMM-NRF51822 Micro-module Copyright 2014 I-SYST, all rights reserved. This document may not be reproduced in any form without, express written consent from I-SYST. Limited Warranty The

More information

KNJN I2C bus development boards

KNJN I2C bus development boards KNJN I2C bus development boards 2005, 2006, 2007, 2008 KNJN LLC http://www.knjn.com/ Document last revision on December 5, 2008 R22 KNJN I2C bus development boards Page 1 Table of Contents 1 The I2C bus...4

More information

EVALUATION BOARD MANUAL EBSHSN Series. EVALUATION KIT MANUAL EKSHSN Series

EVALUATION BOARD MANUAL EBSHSN Series. EVALUATION KIT MANUAL EKSHSN Series . EVALUATION BOARD MANUAL EBSHSN Series EVALUATION KIT MANUAL EKSHSN Series for EYSHSN Series Bluetooth R low energy Module 1/7 . Introduction This evaluation board is applicable for Taiyo Yuden s Bluetooth

More information

78M6613 PSU Firmware Quick Start Guide

78M6613 PSU Firmware Quick Start Guide AVAILABLE 78M6613 PSU Firmware Quick Start Guide May 4, 2012 Rev. 0 UG_6613_113 78M6613 PSU Firmware Quick Start Guide UG_6612_113 Maxim cannot assume responsibility for use of any circuitry other than

More information

KW2XD REFERENCE DESIGNS

KW2XD REFERENCE DESIGNS KW2XD REFERENCE DESIGNS OCCUPANCY SENSOR NODE WIRELESS APPLICATION ENGINEERING FEB, 2017 PUBLIC What is a Reference Design? A form-factor design example, essentially ready to build 1.3 Proven performance

More information

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed

SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed SAMSUNG ELECTRONICS RESERVES THE RIGHT TO CHANGE PRODUCTS, INFORMATION AND SPECIFICATIONS WITHOUT NOTICE. Products and specifications discussed herein are for reference purposes only. All information discussed

More information

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter C8051F38X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F38x Development Kit contains the following items: C8051F380 Target Board C8051Fxxx Development Kit Quick-start Guide Silicon Laboratories

More information

UM QN908x Quick Start. Document information. QN908x, Quick Start, Development Kit, QN9080 DK, QN9080 Development Kit

UM QN908x Quick Start. Document information. QN908x, Quick Start, Development Kit, QN9080 DK, QN9080 Development Kit QN908x Quick Start Rev.2.0 21 March 2018 User manual Document information Info Keywords Abstract Content QN908x, Quick Start, Development Kit, QN9080 DK, QN9080 Development Kit This Quick Start document

More information

nblue TM BR-LE4.0-S2A (CC2540)

nblue TM BR-LE4.0-S2A (CC2540) Page 1 of 7 Copyright 2002-2014 BlueRadios, Inc. Bluetooth 4.0 Low Energy Single Mode Class 1 SoC Module nblue TM BR-LE4.0-S2A (CC2540) AT HOME. AT WORK. ON THE ROAD. USING BLUETOOTH LOW ENERGY WIRELESS

More information

78M6618 PDU1 Firmware Quick Start Guide

78M6618 PDU1 Firmware Quick Start Guide 78M6618 PDU1 Firmware Quick Start Guide July 2012 Rev. 0 UG_6618_122 Table of Contents 1 Introduction... 3 1.1 What s Included with an EVK?... 4 1.2 What s included with an SDK?... 5 1.3 Other Development

More information

nrf5x OTA Testing with LitePoint Bluetooth Advanced nwp_028

nrf5x OTA Testing with LitePoint Bluetooth Advanced nwp_028 nrf5x OTA Testing with LitePoint Bluetooth Advanced nwp_028 White Paper v1.0 / 2018-01-03 Contents 1 Revision history.................................. iii Introduction. 4..................................

More information

EVALUATION BOARD MANUAL EBSHJN Series. EVALUATION KIT MANUAL EKSHJN Series

EVALUATION BOARD MANUAL EBSHJN Series. EVALUATION KIT MANUAL EKSHJN Series EVALUATION BOARD MANUAL EBSHJN Series EVALUATION KIT MANUAL EKSHJN Series for EYSHJN series Bluetooth R low energy Module 1/7 Introduction This evaluation board is applicable for Taiyo Yuden s Bluetooth

More information

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION

WAVETEK BLE-WT51822AA/AB. Revision History. Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Bluetooth low energy Module WT51822AA (256k) /AB (128k) (Bluetooth Low Energy BT4.0) PRODUCT SPECIFICATION Part number: BLE WT51822AA/AB Wavetek has developed a module which supports Bluetooth Low Energy

More information

Quick Start Guide: RL78G14 Motor Control Starter Kit

Quick Start Guide: RL78G14 Motor Control Starter Kit Document Contents 1.0 Introduction 1 2.0 Board Layout 1 3.0 Stand Alone Demonstration Mode 2 4.0 Installation 3 5.0 Using the GUI 4 6.0 RL78/G14 Programming 6 7.0 RL78/G14 Debugging 7 8.0 Next Steps 8

More information

DG0849 Demo Guide PolarFire Dual Camera Video Kit

DG0849 Demo Guide PolarFire Dual Camera Video Kit DG0849 Demo Guide Microsemi Headquarters One Enterprise, Aliso Viejo, CA 92656 USA Within the USA: +1 (800) 713-4113 Outside the USA: +1 (949) 380-6100 Sales: +1 (949) 380-6136 Fax: +1 (949) 215-4996 Email:

More information

How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode. Main components Bluetooth Low Energy wireless system-on-chip

How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode. Main components Bluetooth Low Energy wireless system-on-chip DT0109 Design tip How to configure the BlueNRG-1 and BlueNRG-2 devices in network coprocessor mode Main components BlueNRG-1 BlueNRG-2 Bluetooth Low Energy wireless system-on-chip Bluetooth Low Energy

More information

XC866 Getting Started on EasyKit & Toolkits

XC866 Getting Started on EasyKit & Toolkits March 2005 XC866 on EasyKit & Toolkits Page 1 N e v e r s t o p t h i n k i n g. Overview DAvE! This will get you started in using the XC866. KEIL HiTOP XC800_ FLOAD! You will be introduced to the following

More information

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany

)8-,768'HY.LW 2YHUYLHZ. )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein Dreieich-Buchschlag, Germany )8-,768'HY.LW 2YHUYLHZ )XMLWVX0LNURHOHNWURQLN*PE+ Am Siebenstein 6-10 63303 Dreieich-Buchschlag, Germany Revision: V1.0 Date: 05.08.1999 Introduction to FUJITSU Development Kit for 16LX CPU family DevKit16

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 6 RENESAS SYNERGY KITS CONTENTS 6 RENESAS SYNERGY KITS 03 6.1 The Different Types of Hardware Kits 03 6.2 The SK-S7G2 Starter Kit

More information

Featuring the SM700 RF Engine from Synapse TOWER SYSTEM. Quick Start Guide Wireless Mesh Networking Module featuring SNAP Technology (TWR-RF-SNAP)

Featuring the SM700 RF Engine from Synapse TOWER SYSTEM. Quick Start Guide Wireless Mesh Networking Module featuring SNAP Technology (TWR-RF-SNAP) Featuring the SM700 RF Engine from Synapse TOWER SYSTEM Quick Start Guide Wireless Mesh Networking Module featuring SNAP Technology (TWR-RF-SNAP) TOWER SYSTEM Get to Know the TWR-RF-SNAP Elevator Connection

More information

M16C/62P QSK QSK62P Plus Tutorial 1. Software Development Process using HEW4

M16C/62P QSK QSK62P Plus Tutorial 1. Software Development Process using HEW4 M16C/62P QSK QSK62P Plus Tutorial 1 Software Development Process using HEW4 Overview The following tutorial is a brief introduction on how to develop and debug programs using HEW4 (Highperformance Embedded

More information

KNJN I2C bus development boards

KNJN I2C bus development boards KNJN I2C bus development boards 2005, 2006, 2007, 2008 fpga4fun.com & KNJN LLC http://www.knjn.com/ Document last revision on January 1, 2008 R12 KNJN I2C bus development boards Page 1 Table of Contents

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) User manual SNDEV-260 ZigBee kit Introduction This document describes the SNDEV-260 ZigBee kit which is a full-featured tool kit which offers all the hardware and software needed for deployment of wireless

More information

AVR- M16 development board Users Manual

AVR- M16 development board Users Manual AVR- M16 development board Users Manual All boards produced by Olimex are ROHS compliant Rev. C, January 2005 Copyright(c) 2009, OLIMEX Ltd, All rights reserved Page1 INTRODUCTION AVR-M16 is header board

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

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee.

AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. AIM: To create a project for implement a wireless communication protocol on an embedded system- ZigBee. Introduction ZigBee is one of the Advanced Wireless Technology and CC2430 is the first single-chip

More information

ice40 UltraPlus Image Sensor Elliptical Crypto Engine (ECC) Demo - Radiant Software User Guide

ice40 UltraPlus Image Sensor Elliptical Crypto Engine (ECC) Demo - Radiant Software User Guide ice40 UltraPlus Image Sensor Elliptical Crypto Engine (ECC) Demo - Radiant Software FPGA-UG-02060 Version 1.0 June 2018 Contents Acronyms in This Document... 3 1. Introduction... 4 2. Functional Description...

More information

Getting Started Guide RS-EDP & XC167 CPU Module. Version 2 10th June 2010

Getting Started Guide RS-EDP & XC167 CPU Module. Version 2 10th June 2010 Getting Started Guide RS-EDP & XC167 CPU Module Version 2 10th June 2010 Electrocomponents plc Page 1 Contents 1. Introduction 3 2. Development Tool Support 4 2.1 FTDI Based USB to JTAG Converter... 4

More information

GOOWI. GWLE1024A Bluetooth Low Energy Module Data Sheet. GooWi Technology Co., Ltd. (Document Number:GWLE-1024A-01B)

GOOWI. GWLE1024A Bluetooth Low Energy Module Data Sheet. GooWi Technology Co., Ltd. (Document Number:GWLE-1024A-01B) GOOWI GWLE1024A Bluetooth Low Energy Module Data Sheet (Document Number:) GooWi Technology Co., Ltd GOOWI GWLE1024A Module CSR1024 Rev1.0 Qct. 2016 Device Features A small and cost effective Bluetooth

More information

Si117x Static HRM/SpO2

Si117x Static HRM/SpO2 Si117x Static HRM/SpO2 Software Demo for Wireless STK User s Guide 1.0 Introduction The Silicon Labs Static HRM/SpO 2 software demo for Wireless Starter Kit (EFR32 MG) provides an example application to

More information

AC/DC Adapter. Figure 1. Hardware Setup

AC/DC Adapter. Figure 1. Hardware Setup C8051F12X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F12x Development Kit contains the following items: C8051F120 Target Board Serial Adapter (RS232 to Target Board Debug Interface Protocol

More information

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter

USB Debug Adapter. Power USB DEBUG ADAPTER. Silicon Laboratories. Stop. Run. Figure 1. Hardware Setup using a USB Debug Adapter C8051F2XX DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F2xx Development Kits contain the following items: C8051F206 or C8051F226 Target Board C8051Fxxx Development Kit Quick-Start Guide Silicon

More information

Particle E Series Cloud-integrated hardware platform for cellular IoT devices

Particle E Series Cloud-integrated hardware platform for cellular IoT devices Particle E Series Cloud-integrated hardware platform for cellular IoT devices Particle E Series modules 36.0 x 43.0 x 4.6 mm World s first fully-integrated cellular hardware platform with out-of-box Cloud

More information

User Manual Sample. (English version)

User Manual Sample. (English version) BT-2001 v2.5 User Manual Sample (English version) Man & Tel Co., Ltd. [www.manntel.com] SMD-BT2-E025a Copyright Man&Tel 2004 Page 1of 10 Contents I. Hardware 1. Hardware Overview and Functions 3 2. Hardware

More information

Customize service and solution for wireless transportation products. Bluetooth Module Hardware Datasheet BLE1010C2P

Customize service and solution for wireless transportation products. Bluetooth Module Hardware Datasheet BLE1010C2P Customize service and solution for wireless transportation products Bluetooth Module Hardware Datasheet Chongqing JINOU Science and Technology Development Co., Ltd. 2015-09-01 Contents 1. Features... 1

More information

RTX41xx Introduction. March 2013

RTX41xx Introduction. March 2013 RTX41xx Introduction March 2013 RTX AT A GLANCE One-stop shop for complex wireless system development Engineering Services Enterprise Professional wireless IP telephony for PBX systems in the Enterprise

More information

NRF51822 Eval Kit User Manual

NRF51822 Eval Kit User Manual NRF51822 Eval Kit User Manual Introduction The nrf51822 is a powerful multi-protocol single chip solution for ULP wireless applications. It incorporates Nordic s latest best-in-class performance radio

More information

Microchip WebSeminar

Microchip WebSeminar Microchip WebSeminar MPLAB Starter Kit for Serial Memory Products Powerful, Easy-to-use, Inexpensive 2008 Microchip Technology Incorporated. All Rights Reserved. MPLAB Starter Kit For Serial Memory Products

More information

MDP Based Key Phrase Detection Demonstration User Guide

MDP Based Key Phrase Detection Demonstration User Guide MDP Based Key Phrase Detection Demonstration FPGA-UG-02048 Version 1.1 September 2018 Contents Acronyms in This Document... 3 1. Introduction... 4 2. Functional Description... 4 3. MDP Board Setup... 5

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

DG0598 Demo Guide SmartFusion2 Dual-Axis Motor Control Starter Kit

DG0598 Demo Guide SmartFusion2 Dual-Axis Motor Control Starter Kit DG0598 Demo Guide SmartFusion2 Dual-Axis Motor Control Starter Kit Microsemi Corporate Headquarters One Enterprise, Aliso Viejo, CA 92656 USA Within the USA: +1 (800) 713-4113 Outside the USA: +1 (949)

More information

Scannex rt.buffer Overview

Scannex rt.buffer Overview Scannex rt.buffer Overview Operation The Scannex rt.buffer is a rugged, low power 3G (UMTS/HSPA+) remote telemetry unit providing a flexible solution in marine and harsh environmental conditions, with

More information

EFM32 Happy Gecko Family EFM32HG-SLSTK3400A Quick-Start Guide

EFM32 Happy Gecko Family EFM32HG-SLSTK3400A Quick-Start Guide EFM32 Happy Gecko Family EFM32HG-SLSTK3400A Quick-Start Guide The EFM32HG-SLSTK3400A is an excellent starting point to get familiar with the EFM32 Happy Gecko microcontrollers. The kit contains sensors

More information

SN8000 EVK User Guide

SN8000 EVK User Guide SN8000 EVK User Guide Version: 1.1 Release Date: October 11, 2014 Note: Murata Electronics N.A, Inc (Murata) reserves the right to make changes in specifications at any time and without notice. The information

More information

CANvu 355 & VeeCAN 320 SDK

CANvu 355 & VeeCAN 320 SDK CANvu 355 & VeeCAN 320 SDK INSTALL GUIDE Issue 1 1 P a g e 1. Hardware specification Item CPU NAND FLASH SDRAM DISPLAY USB RS232 RS485 CAN2.0B Description Freescale imx 286, running at 454 MHz 128MB 128MB

More information

Quick Start Guide. Bluetooth Low Energy expansion board based on SPBTLE-RF module for STM32 Nucleo (X-NUCLEO-IDB05A1) Version 1.

Quick Start Guide. Bluetooth Low Energy expansion board based on SPBTLE-RF module for STM32 Nucleo (X-NUCLEO-IDB05A1) Version 1. Quick Start Guide Bluetooth Low Energy expansion board based on SPBTLE-RF module for STM32 Nucleo (X-NUCLEO-IDB05A1) Version 1.5 (Feb 1, 2017) Quick Start Guide Contents 2 STM32 Nucleo Bluetooth Low Energy

More information

WF121 DEVELOPMENT KIT V.1.3.1

WF121 DEVELOPMENT KIT V.1.3.1 WF121 DEVELOPMENT KIT V.1.3.1 DATA SHEET Monday, 05 March 2018 Document Version: 1.1 VERSION HISTORY Date Edited Comment 1.0 First version 1.1 Changed the 32.768kHz external oscillator reference design

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

BT121 Bluetooth Smart Ready Module. July 2016

BT121 Bluetooth Smart Ready Module. July 2016 BT121 Bluetooth Smart Ready Module July 2016 TOPICS Bluetooth Smart vs. Smart Ready Bluetooth Smart Ready Use Cases BT121 Key Features BT121 Benefits BT121 Overview Bluetooth Smart Ready Software Development

More information

GFI Firmware Update Manual

GFI Firmware Update Manual GFI Firmware Update Manual EM357 USB Stick Version: 1.0 Date: 15 th December 2017 Author: Classification: Smart DCC Ltd. DCC Public GFI Firmware Update Manual DCC Public Page 1 of 9 Document Control Revision

More information

Active Interrupt Proven to Lower Power Consumption

Active Interrupt Proven to Lower Power Consumption Active Interrupt Proven to Lower Power Consumption Introduction This note describes Adesto s Active Interrupt feature, and illustrates how to implement this feature. The Active Interrupt works in conjunction

More information

Wireless OBD II CAN Bus Embedded System Design

Wireless OBD II CAN Bus Embedded System Design Wireless OBD II CAN Bus Embedded System Design Carmen Bovalino January 2014 Table of Contents Objective... 1 Background... 1 Description of Proposal... 2 System Operation... 3 System Requirements... 3

More information

SiliconBlue. SiliconBlue Technologies iceman65 Board. Programmable Solutions for Consumer Handheld. 7-MAY-2008 (v1.

SiliconBlue. SiliconBlue Technologies iceman65 Board. Programmable Solutions for Consumer Handheld. 7-MAY-2008 (v1. February 2008 1 SiliconBlue SiliconBlue Technologies iceman65 Board Programmable Solutions for Consumer Handheld 7-MAY-2008 (v1.1) February 2008 2 Agenda iceman65 Kit Programming Options More Information

More information

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter

AC/DC. Adapter. Ribbon. Cable Serial. Serial. Adapter. Figure 1. Hardware Setup using an EC2 Serial Adapter C8051F32X DEVELOPMENT KIT USER S GUIDE 1. Kit Contents The C8051F32x Development Kit contains the following items: C8051F320 Target Board C8051Fxxx Development Kit Quick-Start Guide C8051F32x Development

More information

LM951 Bluetooth Dual Mode Module

LM951 Bluetooth Dual Mode Module Bluetooth ual Mode Module Part No (ray) Part No (ape & Reel) 24/JAN/2017 2.55mm A A 18.9mm Revised 12.71mm Features Bluetooth ual Mode (v2.0, v2.1, v4.0 and v4.1) Requires no external hardware Class 2

More information

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved

Evaluation board for NXP LPC2103. User Guide. Preliminary Version updated 27 th Aug TechToys Company All Rights Reserved Evaluation board for NXP LPC2103 User Guide 1 SOFTWARE Download from KEIL web site at http://www.keil.com/demo/ for ARM evaluation software. Limitations to this evaluation copy have been summarized on

More information