microsoft .net micro framework and intelligent devices

28
Microsoft .NET Micro Framework and Intelligent Devices Lorenzo Tessiore Development Manager Microsoft Corporation FT28

Upload: homer

Post on 24-Feb-2016

55 views

Category:

Documents


0 download

DESCRIPTION

FT28. Microsoft .NET Micro Framework and Intelligent Devices. Lorenzo Tessiore Development Manager Microsoft Corporation. Trends for Devices . Devices are complementary to desktop and web applications Devices are more and more connected and intelligent - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Microsoft .NET Micro Framework and Intelligent Devices

Microsoft .NET Micro Framework and Intelligent DevicesLorenzo TessioreDevelopment ManagerMicrosoft Corporation

FT28

Page 2: Microsoft .NET Micro Framework and Intelligent Devices

Trends for Devices Devices are complementary to desktop and web applications

Devices are more and more connected and intelligent

Devices require a fast time-to-market turnaround

Fast growing business for 32 bits MCU/MPU

Highly innovative market

Page 3: Microsoft .NET Micro Framework and Intelligent Devices

Trends for Devices Application fields are diverse and require specific hardware programming skills

Connectivity must address peer devices, desktop and services transparently

Very diverse toolset, no standard programming model

Few standard communication protocols and little support

Code is generally difficult to port

Page 4: Microsoft .NET Micro Framework and Intelligent Devices

Agenda- What is the .NET Micro Framework (aka .NET MF or MF)- How the MF bridges embedded and desktop programming- Architecture- Demo- Tool set and programming model - The latest version - Distribution and community - Getting started

Page 5: Microsoft .NET Micro Framework and Intelligent Devices

The Devices ContinuumDe

vice

Cap

abili

ties

Full

Limited

LargeSmall Device Category

Win Embedded CE

Windows XP Embedded

.NET Micro

.NET CF

.NET Framework

MCU Example: ARM7 / Cortex-M3 / SH2 ARM9 / Cortex-A8 ARM11 / Cortex-A9 / Atom Centrino

Page 6: Microsoft .NET Micro Framework and Intelligent Devices

The .NET Micro FrameworkThe .NET Micro Framework is a re-implementation of the desktop CLR for embedded devices that are unable to run a high-end embedded OS such as WinCE

Very small memory footprint: • Completely modularized by feature • 512KB ROM / 256KB RAM for the full feature set • WinCE and CF may require more than 10MB ROM / 10MB

RAM

Typical price point of the MCU between $2 and $10

Supports all ARM MCU from ARM7 and up, Analog Devices Blackfin and Renesas SH2/SH2A MCU. No MMU restrictions

Entirely independent code base: this is not the Compact Framework

Page 7: Microsoft .NET Micro Framework and Intelligent Devices

Bridging the Gap with Desktop Programming The programming model is entirely managed codeThe programming environment is the latest VS2008 SP1Interoperability is supported Object Model offers a sub-set of the same namespaces of the .NET Framework for the desktop Object Model is tailored for small embedded devices

Page 8: Microsoft .NET Micro Framework and Intelligent Devices

Architecture and Tool SetManaged Application

Application ServicesExtended Object Model: Web

Services, …

Managed LibrariesBasic Object Model: Threading, I/O, …

Managed Run-TimeCLR, Interpreter, Executive, and Interop

Platform Abstraction Layer (PAL)HW independent facilities

(preferred) Hardware Abstraction

Layer (HAL)

(optional) Host OS

Hardware

Porti

ng K

it (P

K)SD

K

• coding and deploying applications

• targeting any emulator or device

• extending the emulator• leveraging full VS debug

support • using VS Express edition

SDK enables:

• Coding drivers for the .NET MF • Supporting additional

processors • Coding interoperability

components • Customizing the runtime and

OM

PK enables:

Page 9: Microsoft .NET Micro Framework and Intelligent Devices

demo

Page 10: Microsoft .NET Micro Framework and Intelligent Devices

Scenarios: Energy Management

Customer Collaboration Portal

Home Area Network

Applications for management of energy usage

Smart Themostat

In Home Display

Smart Appliances

HVAC Home automation

IP gateway

Usage and billing history

Energy program

registration

Hybrid or Electric Vehicles

Distributed Resources

(solar, wind, …)

AMI Gateway

AMI Infrastructure

Customer

Electric Utility

Service Providers

Advanced Metering Network Internet

`

Home or Remote PC

.NET Micro Framework Domain

Page 11: Microsoft .NET Micro Framework and Intelligent Devices

Scenarios: Actual Garbage

Collection

.NET MF battery powered

RFID access control

Microsoft and SQL Server backend

Developed for the municipality of Venice, Italy, with the help of the Microsoft Innovation Center at the Polytechnic of Torino

Page 12: Microsoft .NET Micro Framework and Intelligent Devices

.NET Micro Framework SDKContains everything you need to get started!

- Add-in installer for the latest VS 2008 SP1 - Post-processing of assemblies into the .NET MF compact format- Project wizards - Full .NET MF object model - Standard emulator - Deployment and debugging against the emulator or any device- Samples - Font editor tools - Device Diagnostic tools - Help (also available online at MSDN) - Compatible with VS2008 Express Edition

Page 13: Microsoft .NET Micro Framework and Intelligent Devices

.NET Micro Framework Porting KitContains everything you need to port the MF onto any device! With the Porting Kit you have full source code access to:

• Code and build device drivers for the .NET MF • Code interoperability components and expose them to the

OM • Customize the runtime and object model for special needs• Add support for additional instruction sets

Assisted creation of new drivers and processor support packages

Supports mainstream embedded tool chains such as ARM RVDS, Keil MDK, GCC, HEW, Visual DSP++

Includes extensive sample libraries coded by silicon vendors such as Atmel and NXP for mainstream MCUs

Page 14: Microsoft .NET Micro Framework and Intelligent Devices

The Object Model

XML Parser

DPWS

SSL

Advanced Graphics

USB client

Touch Panel

Managed Application

Application Services

Managed Libraries

Managed Run-TimeCLR, Interpreter, Executive, and Interop

PAL – Platform Abstraction Layerapproximately 40 functions

(preferred) HAL - Hardware Abstraction Layer

approximately 60 functions

(optional) Host OS

Hardware

I/O: USB, UART, SPI, I2C

Threading

BasicGraphics

Collections

Security

Sockets

Porti

ng K

it (P

K)

SDK

File System

Reflection

HTTP(S)

Page 15: Microsoft .NET Micro Framework and Intelligent Devices

The Programming ModelManaged Code Device Drivers, abstracted I/O and virtualized input for maximum portabilityEncourages event based programming and provides advanced sleep-on-HW-event support for maximum battery life

public static class BatterySaver { public static void WaitOnSerialInput( SerialPort sp ) { sp.DataReceived += new SerialDataReceivedEventHandler( this.DataOnSerial ); PowerState.Sleep(SleepLevel.DeepSleep, HardwareEvent.SerialIn); }

private static void DataOnSerial(object sender, SerialDataReceivedEventArgs e) { … ((SerialPort)sender).Read(...); ... } }

Page 16: Microsoft .NET Micro Framework and Intelligent Devices

Communication and Messaging HTTP(s)

• HttpWebRequest, HttpWebResponse and HttpListener• Supports HTTP/1.1 with chunking and keep-alive• Supports SSL with X.509 certificates

DPWS• Supports WSDL 1.1, SOAP 1.2, WS-Addressing, WS-

MetadataExchange, WS-Transfer, WS-Discovery, WS-Eventing • Compatible with WCF Soap bindings • Code generation tools to/from WSDL and assembly • Code generation compatible and interoperable with desktop

tools

Wired and Wireless• Ethernet, Serial and USB • 802.11 configuration support • 802.15.4 stack available (not yet documented)

Page 17: Microsoft .NET Micro Framework and Intelligent Devices

UI Support Inspired to WPF, supports dynamic layout, rendering , and event dispatching Basic types

• Application• Windows

Basic layout controls• StackPanel • Canvas • InkCanvas

Basic controls• Text• ScrollViewer• ListBox

Event routing and input providers supportIntegrated Touch Panel and Inking support

Page 18: Microsoft .NET Micro Framework and Intelligent Devices

DistributionThe v4.0 version changes the business model from the ground up

As of 11/16/2009 the .NET Micro Framework version is available as source code under the Apache 2.0 license

All the code of the runtime, the object model and device drivers is available free of charge

TCP/IP stack code is provided under the restriction that it must be used in conjunction with MF only

Crypto code is pre-compiled for the supported instruction sets, but replaceable

Page 19: Microsoft .NET Micro Framework and Intelligent Devices

CommunityIdeal for both professionals and hobbyists Co-operative development inside the communityMicrosoft will oversee and approve the feature set together with the community leaders Community Web for exchanging components and solutions Microsoft will officially support any latest version of the .NET MFAnybody is welcome to participate to whatever extent, contributions are encouraged but not required

Page 20: Microsoft .NET Micro Framework and Intelligent Devices

Additions for the 4.0 version HTTP(S) Versioning Faster XML parser and System.Collections supportFaster Graphic/Touch/Inking support Power Level control Wear Leveling for Block storage devices Time SyncArbitrary Display Size Support for Atmel AT91SAM9RL64 ARM9 processor Support for NXP LPC2478 AR7 processorRenesas SH2/A support for SH7619

RTM date: Yesterday!

Page 21: Microsoft .NET Micro Framework and Intelligent Devices

RoadmapVersion 4.1 is tentatively scheduled for End of Third Quarter 2010 (March 2010)

Priorities: • Keep release in sync with Visual Studio 2010 support • Big Endian Support • Open TCP/IP stack• Extensive Cryptographic support • 802.15.4 (with 6lowPAN) and 802.11 drivers • Remote Firmware Update • Remote logging and diagnostics

Page 22: Microsoft .NET Micro Framework and Intelligent Devices

ResourcesThe .NET Micro Framework eco-system relies on a network of partners

Partners own reference hardware, ports, library extensions and specific solutions

Many reference ports are published and documented in the Porting Kit and provided free of change

Atmel and NXP substantially contributed to the PK reference ports

Some partners can also assist developing custom solutions, independently or in conjunction with the .NET Micro Framework team

Page 24: Microsoft .NET Micro Framework and Intelligent Devices

Q&A

Page 25: Microsoft .NET Micro Framework and Intelligent Devices

YOUR FEEDBACK IS IMPORTANT TO US! Please fill out session evaluation

forms online atMicrosoftPDC.com

Page 26: Microsoft .NET Micro Framework and Intelligent Devices

Learn More On Channel 9> Expand your PDC experience through

Channel 9

> Explore videos, hands-on labs, sample code and demos through the new Channel 9 training courses

channel9.msdn.com/learnBuilt by Developers for Developers….

Page 27: Microsoft .NET Micro Framework and Intelligent Devices

© 2009 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries.The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

Page 28: Microsoft .NET Micro Framework and Intelligent Devices