Skip to content
This repository has been archived by the owner on Jun 5, 2019. It is now read-only.

Architecture

Steve Maillet edited this page Mar 25, 2015 · 15 revisions

Architecture of the .NET Micro Framework

The .NET Micro Framework consist of several loosely coupled layers that leverage and build upon one another to form the complete framework. The following layer diagram illustrates the basic layers and their relationships to one another:

.NET Micro Framework Layers

Layers

  • [Physical hardware](Hardware Layer) (not shown in diagram)
  • [CPU Support layer (CPU)](CPU Layer)
  • [Hardware Abstraction Layer (HAL)](HAL Layer)
  • [Operating System (OS)](OS Layer)
  • [Platform Abstraction Layer (PAL)](PAL Layer)
  • [Common Language Runtime (CLR)](CLR Layer)
  • Interop
  • Base Class Libraries
Interop

The interop layer is an extensible set of native code libraries that enable managed code libraries to expose functionality that is ultimately implemented in the native code of the system (much like P/Invoke does on the Mobile and desktop variants of the .NET Runtime).

Base Class Libraries (BCL)

These are the standard .NET Assemblies that are part of the framework. These provide the base types like strings and collections along with more advanced support such as networking etc...