SlideShare a Scribd company logo
1 of 47
Download to read offline
PhilipHandschin
TechnicalConsultant
DevelopingIoTdevices.
Creatingwearableswith
thenewLinkIt™2523
HDKby SAC
Topics
2
WHAT IS MEDIATEK LABS
LinkIt Development platform for RTOS
How to get started
• Install SDK
• Compile test project
• Prepare board for flashing
• Flash the board
• Create own project
• Documentation
Questions
MediaTek Labs
ADeveloper Centric Ecosystem
̶ Global program – free
to join
̶ Supporting developers:
̶ Device creation
̶ App development
̶ Services
̶ labs.mediatek.com
2016-12-07Copyright © MediaTek Inc. All rights reserved. 4
Enabling Developer and Maker Success
̶ Dev resources
̶ Insights and inspiration
̶ Access to hardware
̶ SDKs for makers (Arduino),
professional developers (C/Eclipse)
and Linux (OpenWrt and Ubuntu)
̶ Technical support
̶ Peripherals (sensors, etc)
̶ Cloud management of
device data
̶ Developer advice & matchmaking
̶ Design, production &
go-to-market help
Go from idea to prototype to product
MediaTek LinkIt™ portfolio
Software and hardware development platforms for wearables & IoT
Copyright © MediaTek Inc. All rights reserved.
LinkIt Assist 2502
labs.mediatek.com/2502
̶ Wearable form factors
̶ For professional developers
(C/Eclipse)
LinkIt ONE
labs.mediatek.com/linkitone
̶ Unrivalled connectivity on a
single board
̶ For DIY & maker community
(Arduino)
LinkIt Connect 7681
labs.mediatek.com/7681
̶ The simple way to Wi-Fi enable
your devices
̶ For low-cost smart home or
office deployment
LinkIt Smart 7688
labs.mediatek.com/7688
̶ Open-source Wi-Fi platform for
a more connected world
̶ OpenWrt Linux, Python, Node.js,
Arduino
• Using FreeRTOS with open-source modules with common SDK
• Hardware integrated PMU and security engines
• Development and debugging support in KEIL, IAR, and GCC
• labs.mediatek.com/rtos
MediaTekLinkIt™DevelopmentPlatform
forRTOS
Copyright © MediaTek Inc. All rights reserved.
LinkIt 7687 HDK by SAC
labs.mediatek.com/7687
̶ IoT development
board for power
efficient IoT devices
with secure
Wi-Fi connectivity
LinkIt 2523 HDK by SAC
labs.mediatek.com/2523
̶ For Bluetooth connected
wearables with fast and
accurate positioning
2016-12-07Copyright © MediaTek Inc. All rights reserved. 7
RapidlygrowingLinkItcommunity
Topics
8
What is MediaTek Labs
LINKIT DEVELOPMENT PLATFORM FOR RTOS
How to get started
• Install SDK
• Compile test project
• Prepare board for flashing
• Flash the board
• Create own project
• Documentation
Questions
LinkIt Development platform for
RTOS
9
MediaTek SOC
Range of
MediaTek SOC
starting with
MT2523G
SDK & tools
GCC compiler
and Keil µVision
support,
flashing and pin
mux tools
RTOS & API
Optimized
RTOS and API
to take
advantage of
MediaTek SOC
features and
connected
peripherals
+ ++
HDK & modules
LinkIt and
compatible HDKs
for prototyping
and compatible
modules for
device
manufacture
labs.mediatek.com/rtos
10
Topics
11
What is MediaTek Labs
LinkIt Development platform for RTOS
HOW TO GET STARTED
• Install SDK
• Compile test project
• Prepare board for flashing
• Flash the board
• Create own project
• Documentation
Questions
INSTALL SDK
How To Get Started
12
Download SDK
13
Install MinGW
14
▪ Download MinGW cross-compiler
• https://sourceforge.net/projects/mingw/files/Inst
aller/mingw-get-setup.exe/download
15
16
Test MinGW installation
17
▪ Navigate to C:MinGWmsys1.0 folder
▪ launch terminal by running msys.bat
▪ Close it again
Copy SDK to MinGW
18
▪ Unzip the downloaded SDK file
▪ Copy the whole folder to
▪ C:MinGWmsys1.0home<username>LinkI
t_SDK_V4.0.0_public
Install ARM_GCC
19
▪ Download ARM-GCC-win32
• https://launchpad.net/gcc-arm-embedded/4.8/4.8-2014-
q3-update/+download/gcc-arm-none-eabi-4_8-2014q3-
20140805-win32.zip
▪ Create a new folder named win under
• C:MinGWmsys1.0home<username><SDK
root>toolsgcc
▪ b) Unzip the content of the zip file to
<sdk_root>toolsgccwin folder.
▪ c) Rename the unzipped folder gcc-arm-none-eabi
20
COMPILE TEST PROJECT
How To Get Started
21
Demo
22
▪ Navigate to C:MinGWmsys1.0 folder
▪ launch terminal by running msys.bat
Compile a test project
23
▪ Change to SDK directory
▪ Use “./build.sh list” to see all
commands/projects
▪ Use
“./build.sh <HDK> <PROJECT>”
▪ Example
“./build.sh mt2523_hdk rtc_set_alarm”
Out directory
24
▪ Once compilation is successful, out files are in
▪ <sdk_root>out<HDK><project_name>
PREPARE BOARD FOR FLASHING
How To Get Started
25
Unzip PC_tool_Win
26
▪ Under <SDK_root>/tools, unzip PC_tool_Win
Prepare board drivers
27
▪ MT2523_FlashToolMS_USB_ComPort_Driver
v1.1032.1
InstallDriver.exe
▪ Install driver
▪ Connect board with a micro USB cable
MT2523 USB
28
29
Prepare board drivers MK20
30
▪ Connect board with a micro USB cable
▪ Download mbed driver
• https://developer.mbed.org/handbook/Windows-
serial-configuration
▪ Install driver
MK 20 USB
31
32
FLASH THE BOARD
How To Get Started
33
Prepare HDK for flashing
34
FLASH THE BOARD
How To Get Started
35
Flash the board
36
▪ Disconnect the board from your computer
▪ Start the flash tool
Flash the board
37
1
2
3
4. Plug in board to
computer
Run the project
38
▪ Disconnect the micro-USB cable
▪ Reconnect the USB cable to MK20 port
▪ Open HyperTerminal/Putty program
• Choose Serial connection
• Choose COM port and Speed
• Open connection
1
CREATE A NEW PROJECT
How to get started
39
Build your own project
40
▪ Copy existing project folder
▪ Change makefile in GCC folder
• <project_name>/GCC
▪ Change Code
▪ Compile project
Debug
41
▪ If the build fails, log can be found in out
directory
• <SDK_root>out<hdk><project>log
▪ More debug details in getting started guide.
Check out logs
42
▪ Open HyperTerminal/Putty program
• Choose Serial connection
• Choose COM port and Speed
• Open connection
1
DOCUMENTATION
How To Get Started
43
Documentation
44
▪ <SDK root>/doc
▪ How to setup GCC compiler
• LinkIt_SDK_v4_GCC_Build_Environment_Guide
▪ Getting started with development
• LinkIt_for_RTOS_Get_Started_Guide
 Debugger setup under point 2.3.6
▪ Complete API reference
• <SDK root>docLinkIt SDK for 2523 API Reference
Manualindex.html
Topics
45
What is MediaTek Labs
LinkIt Development platform for RTOS
How to get started
• Install SDK
• Compile test project
• Prepare board for flashing
• Flash the board
• Create own project
• Documentation
QUESTIONS
Questions?
46
Download Resources:
labs.mediatek.com/rtos
MediaTek Cloud Sandbox:
labs.mediatek.com/mcs
Check the Forum:
labs.mediatek.com/forums
Copyright © MediaTek Inc. All rights reserved.

More Related Content

What's hot

Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Codemotion
 
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoT
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoTUtilisation de la plateforme virtuelle QEMU/SystemC pour l'IoT
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoTPôle Systematic Paris-Region
 
MicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ
 
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...Paris Open Source Summit
 
Eclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersEclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersMicroEJ
 
Eclipse IoT Edje project: the software foundation for IoT devices
Eclipse IoT Edje project: the software foundation for IoT devicesEclipse IoT Edje project: the software foundation for IoT devices
Eclipse IoT Edje project: the software foundation for IoT devicesMicroEJ
 
WP1 Gateway HW Design & Implementation
WP1 Gateway HW Design & ImplementationWP1 Gateway HW Design & Implementation
WP1 Gateway HW Design & ImplementationAGILE IoT
 
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...Paris Open Source Summit
 
Nio100 product guide 20150520
Nio100 product guide 20150520Nio100 product guide 20150520
Nio100 product guide 20150520和得 王
 
MicroEJ OS for IoT devices
MicroEJ OS for IoT devicesMicroEJ OS for IoT devices
MicroEJ OS for IoT devicescharlotte75009
 
IoT Development from Prototype to Production
IoT Development from Prototype to ProductionIoT Development from Prototype to Production
IoT Development from Prototype to ProductionMender.io
 
OCF/IoTivity for Healthcare/Fitness/Wearable
OCF/IoTivity for Healthcare/Fitness/WearableOCF/IoTivity for Healthcare/Fitness/Wearable
OCF/IoTivity for Healthcare/Fitness/WearableJonathan Jeon
 
BKK16-200 Designing Security into low cost IO T Systems
BKK16-200 Designing Security into low cost IO T SystemsBKK16-200 Designing Security into low cost IO T Systems
BKK16-200 Designing Security into low cost IO T SystemsLinaro
 
Cisco-Security & Survelliance Ürünleri
Cisco-Security & Survelliance ÜrünleriCisco-Security & Survelliance Ürünleri
Cisco-Security & Survelliance Ürünlericem lale
 
WP2 - T2.1 - Automatic configuration based on hardware modules
WP2 - T2.1 - Automatic configuration based on hardware modulesWP2 - T2.1 - Automatic configuration based on hardware modules
WP2 - T2.1 - Automatic configuration based on hardware modulesAGILE IoT
 
Why the Need for Special Operating Systems for IoT and Wearable Devices?
Why the Need for Special Operating Systems for IoT and Wearable Devices?Why the Need for Special Operating Systems for IoT and Wearable Devices?
Why the Need for Special Operating Systems for IoT and Wearable Devices?MicroEJ
 
Intoduction Internet of Things
Intoduction Internet of ThingsIntoduction Internet of Things
Intoduction Internet of ThingsIvelin Yanev
 

What's hot (20)

Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015
 
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoT
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoTUtilisation de la plateforme virtuelle QEMU/SystemC pour l'IoT
Utilisation de la plateforme virtuelle QEMU/SystemC pour l'IoT
 
Tizen Connected with IoTivity
Tizen Connected with IoTivityTizen Connected with IoTivity
Tizen Connected with IoTivity
 
MicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devices
 
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
 
Présentation du système d'exploitation RIOT-OS
Présentation du système d'exploitation RIOT-OSPrésentation du système d'exploitation RIOT-OS
Présentation du système d'exploitation RIOT-OS
 
Eclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersEclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for Microcontrollers
 
IoT Meets Security
IoT Meets SecurityIoT Meets Security
IoT Meets Security
 
Eclipse IoT Edje project: the software foundation for IoT devices
Eclipse IoT Edje project: the software foundation for IoT devicesEclipse IoT Edje project: the software foundation for IoT devices
Eclipse IoT Edje project: the software foundation for IoT devices
 
WP1 Gateway HW Design & Implementation
WP1 Gateway HW Design & ImplementationWP1 Gateway HW Design & Implementation
WP1 Gateway HW Design & Implementation
 
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...
#OSSPARIS19 : RIOT: towards open source, secure DevOps on microcontroller-bas...
 
Nio100 product guide 20150520
Nio100 product guide 20150520Nio100 product guide 20150520
Nio100 product guide 20150520
 
MicroEJ OS for IoT devices
MicroEJ OS for IoT devicesMicroEJ OS for IoT devices
MicroEJ OS for IoT devices
 
IoT Development from Prototype to Production
IoT Development from Prototype to ProductionIoT Development from Prototype to Production
IoT Development from Prototype to Production
 
OCF/IoTivity for Healthcare/Fitness/Wearable
OCF/IoTivity for Healthcare/Fitness/WearableOCF/IoTivity for Healthcare/Fitness/Wearable
OCF/IoTivity for Healthcare/Fitness/Wearable
 
BKK16-200 Designing Security into low cost IO T Systems
BKK16-200 Designing Security into low cost IO T SystemsBKK16-200 Designing Security into low cost IO T Systems
BKK16-200 Designing Security into low cost IO T Systems
 
Cisco-Security & Survelliance Ürünleri
Cisco-Security & Survelliance ÜrünleriCisco-Security & Survelliance Ürünleri
Cisco-Security & Survelliance Ürünleri
 
WP2 - T2.1 - Automatic configuration based on hardware modules
WP2 - T2.1 - Automatic configuration based on hardware modulesWP2 - T2.1 - Automatic configuration based on hardware modules
WP2 - T2.1 - Automatic configuration based on hardware modules
 
Why the Need for Special Operating Systems for IoT and Wearable Devices?
Why the Need for Special Operating Systems for IoT and Wearable Devices?Why the Need for Special Operating Systems for IoT and Wearable Devices?
Why the Need for Special Operating Systems for IoT and Wearable Devices?
 
Intoduction Internet of Things
Intoduction Internet of ThingsIntoduction Internet of Things
Intoduction Internet of Things
 

Viewers also liked

2016 IoT Insights and Opportunities
2016 IoT Insights and Opportunities 2016 IoT Insights and Opportunities
2016 IoT Insights and Opportunities CompTIA
 
The State of IoT
The State of IoTThe State of IoT
The State of IoTMike Kavis
 
Puppet User Group Presentation - 15 March 2012
Puppet User Group Presentation - 15 March 2012Puppet User Group Presentation - 15 March 2012
Puppet User Group Presentation - 15 March 2012Walter Heck
 
OlinData Puppet Presentation for MOSC 2012
OlinData Puppet Presentation for MOSC 2012OlinData Puppet Presentation for MOSC 2012
OlinData Puppet Presentation for MOSC 2012Walter Heck
 
The Challenges of Container Configuration
The Challenges of Container ConfigurationThe Challenges of Container Configuration
The Challenges of Container ConfigurationGareth Rushgrove
 
IoT M2M case study analysis
IoT M2M case study analysisIoT M2M case study analysis
IoT M2M case study analysisSpiros Louvros
 
The Future of IOT: Living, Moving and Interacting Scenarios.
The Future of IOT: Living, Moving and Interacting Scenarios.The Future of IOT: Living, Moving and Interacting Scenarios.
The Future of IOT: Living, Moving and Interacting Scenarios.Telefónica IoT
 
End to end business transformation
End to end business transformationEnd to end business transformation
End to end business transformationAjay Kumar Uppal
 
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...Amazon Web Services
 
Introduction to Puppet Enterprise
Introduction to Puppet EnterpriseIntroduction to Puppet Enterprise
Introduction to Puppet EnterprisePuppet
 
Building Healthier Communities: TEDMED 2016
Building Healthier Communities: TEDMED 2016Building Healthier Communities: TEDMED 2016
Building Healthier Communities: TEDMED 2016Luminary Labs
 
Beyond cards, phones and terminals: New payment form factors
Beyond cards, phones and terminals: New payment form factorsBeyond cards, phones and terminals: New payment form factors
Beyond cards, phones and terminals: New payment form factorsNXPSemiconductors
 
5G Presentation
5G Presentation5G Presentation
5G PresentationEricsson
 
Internet of Things (IoT) - We Are at the Tip of An Iceberg
Internet of Things (IoT) - We Are at the Tip of An IcebergInternet of Things (IoT) - We Are at the Tip of An Iceberg
Internet of Things (IoT) - We Are at the Tip of An IcebergDr. Mazlan Abbas
 

Viewers also liked (16)

2016 IoT Insights and Opportunities
2016 IoT Insights and Opportunities 2016 IoT Insights and Opportunities
2016 IoT Insights and Opportunities
 
The State of IoT
The State of IoTThe State of IoT
The State of IoT
 
Puppet User Group Presentation - 15 March 2012
Puppet User Group Presentation - 15 March 2012Puppet User Group Presentation - 15 March 2012
Puppet User Group Presentation - 15 March 2012
 
OlinData Puppet Presentation for MOSC 2012
OlinData Puppet Presentation for MOSC 2012OlinData Puppet Presentation for MOSC 2012
OlinData Puppet Presentation for MOSC 2012
 
Thinking Evil Thoughts
Thinking Evil ThoughtsThinking Evil Thoughts
Thinking Evil Thoughts
 
The Challenges of Container Configuration
The Challenges of Container ConfigurationThe Challenges of Container Configuration
The Challenges of Container Configuration
 
IoT M2M case study analysis
IoT M2M case study analysisIoT M2M case study analysis
IoT M2M case study analysis
 
Puppet and Openshift
Puppet and OpenshiftPuppet and Openshift
Puppet and Openshift
 
The Future of IOT: Living, Moving and Interacting Scenarios.
The Future of IOT: Living, Moving and Interacting Scenarios.The Future of IOT: Living, Moving and Interacting Scenarios.
The Future of IOT: Living, Moving and Interacting Scenarios.
 
End to end business transformation
End to end business transformationEnd to end business transformation
End to end business transformation
 
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...
AWS re:Invent 2016: Understanding IoT Data: How to Leverage Amazon Kinesis in...
 
Introduction to Puppet Enterprise
Introduction to Puppet EnterpriseIntroduction to Puppet Enterprise
Introduction to Puppet Enterprise
 
Building Healthier Communities: TEDMED 2016
Building Healthier Communities: TEDMED 2016Building Healthier Communities: TEDMED 2016
Building Healthier Communities: TEDMED 2016
 
Beyond cards, phones and terminals: New payment form factors
Beyond cards, phones and terminals: New payment form factorsBeyond cards, phones and terminals: New payment form factors
Beyond cards, phones and terminals: New payment form factors
 
5G Presentation
5G Presentation5G Presentation
5G Presentation
 
Internet of Things (IoT) - We Are at the Tip of An Iceberg
Internet of Things (IoT) - We Are at the Tip of An IcebergInternet of Things (IoT) - We Are at the Tip of An Iceberg
Internet of Things (IoT) - We Are at the Tip of An Iceberg
 

Similar to Developing IoT devices. Creating wearables with the new LinkIt™ 2523 HDK by SAC

A local private PaaS in minutes with the Red Hat CDK
A local private PaaS in minutes with the Red Hat CDKA local private PaaS in minutes with the Red Hat CDK
A local private PaaS in minutes with the Red Hat CDKEric D. Schabell
 
IoT: Contrasting Yocto/Buildroot to binary OSes
IoT: Contrasting Yocto/Buildroot to binary OSesIoT: Contrasting Yocto/Buildroot to binary OSes
IoT: Contrasting Yocto/Buildroot to binary OSesMender.io
 
ProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialAlan Percy
 
ProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialTelcoBridges Inc.
 
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1Qualcomm Developer Network
 
CHIPS Alliance_Object Automation Inc_workshop
CHIPS Alliance_Object Automation Inc_workshopCHIPS Alliance_Object Automation Inc_workshop
CHIPS Alliance_Object Automation Inc_workshopObject Automation
 
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamQuick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamMif Masterz
 
Track 5 session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...
Track 5   session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...Track 5   session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...
Track 5 session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...ST_World
 
Docker Bday #5, SF Edition: Introduction to Docker
Docker Bday #5, SF Edition: Introduction to DockerDocker Bday #5, SF Edition: Introduction to Docker
Docker Bday #5, SF Edition: Introduction to DockerDocker, Inc.
 
Why the yocto project for my io t project elc_edinburgh_2018
Why the yocto project for my io t project elc_edinburgh_2018Why the yocto project for my io t project elc_edinburgh_2018
Why the yocto project for my io t project elc_edinburgh_2018Mender.io
 
DEF CON 27 - workshop - RICHARD GOLD - mind the gap
DEF CON 27 - workshop - RICHARD GOLD - mind the gapDEF CON 27 - workshop - RICHARD GOLD - mind the gap
DEF CON 27 - workshop - RICHARD GOLD - mind the gapFelipe Prado
 
Docs as Code: Publishing Processes for API Experiences
Docs as Code: Publishing Processes for API ExperiencesDocs as Code: Publishing Processes for API Experiences
Docs as Code: Publishing Processes for API ExperiencesAnne Gentle
 
Summit 16: NetIDE: Integrating and Orchestrating SDN Controllers
Summit 16: NetIDE: Integrating and Orchestrating SDN ControllersSummit 16: NetIDE: Integrating and Orchestrating SDN Controllers
Summit 16: NetIDE: Integrating and Orchestrating SDN ControllersOPNFV
 
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...Sanae BEKKAR
 
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...Intel® Software
 
Srikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth Pilli
 
Docker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex VranceanuDocker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex VranceanuITCamp
 
Docker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker SlidesDocker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker SlidesDocker, Inc.
 
Docker Birthday #3 Slides - Overview
Docker Birthday #3 Slides - OverviewDocker Birthday #3 Slides - Overview
Docker Birthday #3 Slides - OverviewChris Ciborowski
 

Similar to Developing IoT devices. Creating wearables with the new LinkIt™ 2523 HDK by SAC (20)

A local private PaaS in minutes with the Red Hat CDK
A local private PaaS in minutes with the Red Hat CDKA local private PaaS in minutes with the Red Hat CDK
A local private PaaS in minutes with the Red Hat CDK
 
IoT: Contrasting Yocto/Buildroot to binary OSes
IoT: Contrasting Yocto/Buildroot to binary OSesIoT: Contrasting Yocto/Buildroot to binary OSes
IoT: Contrasting Yocto/Buildroot to binary OSes
 
ProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialProSBC on Azure - A Tutorial
ProSBC on Azure - A Tutorial
 
ProSBC on Azure - A Tutorial
ProSBC on Azure - A TutorialProSBC on Azure - A Tutorial
ProSBC on Azure - A Tutorial
 
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1
Developing for Industrial IoT with Linux OS on DragonBoard™ 410c: Session 1
 
CHIPS Alliance_Object Automation Inc_workshop
CHIPS Alliance_Object Automation Inc_workshopCHIPS Alliance_Object Automation Inc_workshop
CHIPS Alliance_Object Automation Inc_workshop
 
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamQuick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
 
Track 5 session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...
Track 5   session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...Track 5   session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...
Track 5 session 5 - st dev con 2016 - stm32 hands on seminar - cloud connec...
 
Docker Bday #5, SF Edition: Introduction to Docker
Docker Bday #5, SF Edition: Introduction to DockerDocker Bday #5, SF Edition: Introduction to Docker
Docker Bday #5, SF Edition: Introduction to Docker
 
Why the yocto project for my io t project elc_edinburgh_2018
Why the yocto project for my io t project elc_edinburgh_2018Why the yocto project for my io t project elc_edinburgh_2018
Why the yocto project for my io t project elc_edinburgh_2018
 
DEF CON 27 - workshop - RICHARD GOLD - mind the gap
DEF CON 27 - workshop - RICHARD GOLD - mind the gapDEF CON 27 - workshop - RICHARD GOLD - mind the gap
DEF CON 27 - workshop - RICHARD GOLD - mind the gap
 
Docs as Code: Publishing Processes for API Experiences
Docs as Code: Publishing Processes for API ExperiencesDocs as Code: Publishing Processes for API Experiences
Docs as Code: Publishing Processes for API Experiences
 
Summit 16: NetIDE: Integrating and Orchestrating SDN Controllers
Summit 16: NetIDE: Integrating and Orchestrating SDN ControllersSummit 16: NetIDE: Integrating and Orchestrating SDN Controllers
Summit 16: NetIDE: Integrating and Orchestrating SDN Controllers
 
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...
[Oracle Webcast] Discover the Oracle Blockchain Platform through the eyes of ...
 
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...
Accelerate Your IoT and Robotics Development Using Web Technology and Apache ...
 
Srikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latestSrikanth_PILLI_CV_latest
Srikanth_PILLI_CV_latest
 
Node-RED Installer, Standalone Installer using Electron
Node-RED Installer, Standalone Installer using ElectronNode-RED Installer, Standalone Installer using Electron
Node-RED Installer, Standalone Installer using Electron
 
Docker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex VranceanuDocker adventures in Continuous Delivery - Alex Vranceanu
Docker adventures in Continuous Delivery - Alex Vranceanu
 
Docker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker SlidesDocker Birthday #3 - Intro to Docker Slides
Docker Birthday #3 - Intro to Docker Slides
 
Docker Birthday #3 Slides - Overview
Docker Birthday #3 Slides - OverviewDocker Birthday #3 Slides - Overview
Docker Birthday #3 Slides - Overview
 

Recently uploaded

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 

Recently uploaded (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 

Developing IoT devices. Creating wearables with the new LinkIt™ 2523 HDK by SAC

  • 2. Topics 2 WHAT IS MEDIATEK LABS LinkIt Development platform for RTOS How to get started • Install SDK • Compile test project • Prepare board for flashing • Flash the board • Create own project • Documentation Questions
  • 3. MediaTek Labs ADeveloper Centric Ecosystem ̶ Global program – free to join ̶ Supporting developers: ̶ Device creation ̶ App development ̶ Services ̶ labs.mediatek.com
  • 4. 2016-12-07Copyright © MediaTek Inc. All rights reserved. 4 Enabling Developer and Maker Success ̶ Dev resources ̶ Insights and inspiration ̶ Access to hardware ̶ SDKs for makers (Arduino), professional developers (C/Eclipse) and Linux (OpenWrt and Ubuntu) ̶ Technical support ̶ Peripherals (sensors, etc) ̶ Cloud management of device data ̶ Developer advice & matchmaking ̶ Design, production & go-to-market help Go from idea to prototype to product
  • 5. MediaTek LinkIt™ portfolio Software and hardware development platforms for wearables & IoT Copyright © MediaTek Inc. All rights reserved. LinkIt Assist 2502 labs.mediatek.com/2502 ̶ Wearable form factors ̶ For professional developers (C/Eclipse) LinkIt ONE labs.mediatek.com/linkitone ̶ Unrivalled connectivity on a single board ̶ For DIY & maker community (Arduino) LinkIt Connect 7681 labs.mediatek.com/7681 ̶ The simple way to Wi-Fi enable your devices ̶ For low-cost smart home or office deployment LinkIt Smart 7688 labs.mediatek.com/7688 ̶ Open-source Wi-Fi platform for a more connected world ̶ OpenWrt Linux, Python, Node.js, Arduino
  • 6. • Using FreeRTOS with open-source modules with common SDK • Hardware integrated PMU and security engines • Development and debugging support in KEIL, IAR, and GCC • labs.mediatek.com/rtos MediaTekLinkIt™DevelopmentPlatform forRTOS Copyright © MediaTek Inc. All rights reserved. LinkIt 7687 HDK by SAC labs.mediatek.com/7687 ̶ IoT development board for power efficient IoT devices with secure Wi-Fi connectivity LinkIt 2523 HDK by SAC labs.mediatek.com/2523 ̶ For Bluetooth connected wearables with fast and accurate positioning
  • 7. 2016-12-07Copyright © MediaTek Inc. All rights reserved. 7 RapidlygrowingLinkItcommunity
  • 8. Topics 8 What is MediaTek Labs LINKIT DEVELOPMENT PLATFORM FOR RTOS How to get started • Install SDK • Compile test project • Prepare board for flashing • Flash the board • Create own project • Documentation Questions
  • 9. LinkIt Development platform for RTOS 9 MediaTek SOC Range of MediaTek SOC starting with MT2523G SDK & tools GCC compiler and Keil µVision support, flashing and pin mux tools RTOS & API Optimized RTOS and API to take advantage of MediaTek SOC features and connected peripherals + ++ HDK & modules LinkIt and compatible HDKs for prototyping and compatible modules for device manufacture labs.mediatek.com/rtos
  • 10. 10
  • 11. Topics 11 What is MediaTek Labs LinkIt Development platform for RTOS HOW TO GET STARTED • Install SDK • Compile test project • Prepare board for flashing • Flash the board • Create own project • Documentation Questions
  • 12. INSTALL SDK How To Get Started 12
  • 14. Install MinGW 14 ▪ Download MinGW cross-compiler • https://sourceforge.net/projects/mingw/files/Inst aller/mingw-get-setup.exe/download
  • 15. 15
  • 16. 16
  • 17. Test MinGW installation 17 ▪ Navigate to C:MinGWmsys1.0 folder ▪ launch terminal by running msys.bat ▪ Close it again
  • 18. Copy SDK to MinGW 18 ▪ Unzip the downloaded SDK file ▪ Copy the whole folder to ▪ C:MinGWmsys1.0home<username>LinkI t_SDK_V4.0.0_public
  • 19. Install ARM_GCC 19 ▪ Download ARM-GCC-win32 • https://launchpad.net/gcc-arm-embedded/4.8/4.8-2014- q3-update/+download/gcc-arm-none-eabi-4_8-2014q3- 20140805-win32.zip ▪ Create a new folder named win under • C:MinGWmsys1.0home<username><SDK root>toolsgcc ▪ b) Unzip the content of the zip file to <sdk_root>toolsgccwin folder. ▪ c) Rename the unzipped folder gcc-arm-none-eabi
  • 20. 20
  • 21. COMPILE TEST PROJECT How To Get Started 21
  • 22. Demo 22 ▪ Navigate to C:MinGWmsys1.0 folder ▪ launch terminal by running msys.bat
  • 23. Compile a test project 23 ▪ Change to SDK directory ▪ Use “./build.sh list” to see all commands/projects ▪ Use “./build.sh <HDK> <PROJECT>” ▪ Example “./build.sh mt2523_hdk rtc_set_alarm”
  • 24. Out directory 24 ▪ Once compilation is successful, out files are in ▪ <sdk_root>out<HDK><project_name>
  • 25. PREPARE BOARD FOR FLASHING How To Get Started 25
  • 26. Unzip PC_tool_Win 26 ▪ Under <SDK_root>/tools, unzip PC_tool_Win
  • 27. Prepare board drivers 27 ▪ MT2523_FlashToolMS_USB_ComPort_Driver v1.1032.1 InstallDriver.exe ▪ Install driver ▪ Connect board with a micro USB cable
  • 29. 29
  • 30. Prepare board drivers MK20 30 ▪ Connect board with a micro USB cable ▪ Download mbed driver • https://developer.mbed.org/handbook/Windows- serial-configuration ▪ Install driver
  • 32. 32
  • 33. FLASH THE BOARD How To Get Started 33
  • 34. Prepare HDK for flashing 34
  • 35. FLASH THE BOARD How To Get Started 35
  • 36. Flash the board 36 ▪ Disconnect the board from your computer ▪ Start the flash tool
  • 37. Flash the board 37 1 2 3 4. Plug in board to computer
  • 38. Run the project 38 ▪ Disconnect the micro-USB cable ▪ Reconnect the USB cable to MK20 port ▪ Open HyperTerminal/Putty program • Choose Serial connection • Choose COM port and Speed • Open connection 1
  • 39. CREATE A NEW PROJECT How to get started 39
  • 40. Build your own project 40 ▪ Copy existing project folder ▪ Change makefile in GCC folder • <project_name>/GCC ▪ Change Code ▪ Compile project
  • 41. Debug 41 ▪ If the build fails, log can be found in out directory • <SDK_root>out<hdk><project>log ▪ More debug details in getting started guide.
  • 42. Check out logs 42 ▪ Open HyperTerminal/Putty program • Choose Serial connection • Choose COM port and Speed • Open connection 1
  • 44. Documentation 44 ▪ <SDK root>/doc ▪ How to setup GCC compiler • LinkIt_SDK_v4_GCC_Build_Environment_Guide ▪ Getting started with development • LinkIt_for_RTOS_Get_Started_Guide  Debugger setup under point 2.3.6 ▪ Complete API reference • <SDK root>docLinkIt SDK for 2523 API Reference Manualindex.html
  • 45. Topics 45 What is MediaTek Labs LinkIt Development platform for RTOS How to get started • Install SDK • Compile test project • Prepare board for flashing • Flash the board • Create own project • Documentation QUESTIONS
  • 46. Questions? 46 Download Resources: labs.mediatek.com/rtos MediaTek Cloud Sandbox: labs.mediatek.com/mcs Check the Forum: labs.mediatek.com/forums
  • 47. Copyright © MediaTek Inc. All rights reserved.