leo hendrickson / Mbed OS example-Ethernet-mbed-Cloud-connect
Committer:
leothedragon
Date:
Tue May 04 08:55:12 2021 +0000
Revision:
0:8f0bb79ddd48
nmn

Who changed what in which revision?

UserRevisionLine numberNew contents of line
leothedragon 0:8f0bb79ddd48 1 Device Management Platform Abstraction Layer (PAL)
leothedragon 0:8f0bb79ddd48 2 =================
leothedragon 0:8f0bb79ddd48 3
leothedragon 0:8f0bb79ddd48 4 The Device Management Platform Abstraction Layer (PAL) connects client with the underlying platform.
leothedragon 0:8f0bb79ddd48 5
leothedragon 0:8f0bb79ddd48 6 The main purpose of PAL is to enable easy and fast client services portability, allowing them to operate over wide range of ARM Cortex-based platforms running different operating systems with various libraries (networking, for example).
leothedragon 0:8f0bb79ddd48 7
leothedragon 0:8f0bb79ddd48 8 PAL has two layers:
leothedragon 0:8f0bb79ddd48 9
leothedragon 0:8f0bb79ddd48 10 - **Service API layer**: provides the PAL APIs for client code. The APIs are identical for all platforms and operating systems, and you should not modify them.
leothedragon 0:8f0bb79ddd48 11 - **Platform API layer**: provides a standard set of baseline requirements for the platform. To allow client to run on the target platform, you need to implement all requirements when you port. The implementation may be different for each target operating system or library; PAL provides reference implementations for several operating systems, including Mbed OS.
leothedragon 0:8f0bb79ddd48 12
leothedragon 0:8f0bb79ddd48 13 See the [Files](files.html) section to review documentation for specific APIs.
leothedragon 0:8f0bb79ddd48 14
leothedragon 0:8f0bb79ddd48 15 See the [full documentation and porting guide for PAL](https://cloud.mbed.com/docs/current/porting/index.html).
leothedragon 0:8f0bb79ddd48 16