-
Notifications
You must be signed in to change notification settings - Fork 3
Library Architecture
The Hall Switch library follows the architecture pattern shown in the stack diagram:
The monolithic core library can be universally integrated across any low level peripheral drivers, embedded operating system, and middleware of each software framework.
The reusability and interoperability is achieved by defining a Platform Abstraction Layer (PAL) interface which is implemented by each framework for its specific hardware abstraction layer and operating system resources APIs.
Additionaly, the core library API is accommodated and adapted to the particularities of each software framework. The framework API wrappers intend to harmonize the core library API with that of the software development framework in which it is integrated, making it easier for the users already familiarized with the development framework.
The support for the multiple hardware platforms is then provided by each development framework.
The specific Hall Switch library modules are depicted more specifically below:
In the next sections, the information of the main architecture modules for the Hall Switch library is extended.
The core library contains all the library logic and high level functionalities of the sensor peripheral. The core library remains C++ agnostic by interacting with the specific platform (and framework) through a Platform Abstraction Layer interface. No other dependencies than standard C/C++ modules and the PAL are found in these sources.
Additionally to the Hall Switch class, a derived Hall Speed class extends its functionality for speed rotation calculation applications.
These code sources can be found under "src/corelib".
The core lib API provides access to all Hall Switch and Hall Speed functionalities given the instances to the required PAL instances. Find more information in the Hall Switch API and Hall Speed API sections.
The Platform Abstraction Layer Interface is implemented via abstract C++ classes declaring all the necessary platform resources and functionalities that need to be provided by the specific framework-platform implementation.
The simple Hall Switch specifies in its PAL modules a GPIO class and a Timer class. Its implementation is located in the "src/pal" folder.
The PAL interfances functions, behaviour description and implementation details, can be found in the PAL Interface section.
The PAL interface is defined for each embedded software framework through its low level peripheral drivers and operating system resources APIs. The GPIO and Timer interface abstract classes are inherited and defined in this layer.
The "src/framework/sample_fmwk/pal" folder contains the pal implementation for the particular framework.
Find more information about the supported software development frameworks in the Software Frameworks section.
The idea behind this layer is to adapt the library in order to comply with the programming conventions of the integrated programming framework or ecosystem.
Operating system libraries, low level driver of hardware peripherals (digital input/outputs, PWM, analog conversion, etc.) or other middlewares resources are implemented for each development framework following certain patterns for functions, parameters, and primitive types.
At these level, certain platform functionalities required by Hall Switch can be already defined and adapted to the API available resources: functions prototypes, framework core libraries, low level driver HAL, programming patterns, and even framework feel and look aspects.
The frameworks wrapper API files are located in the "src/framework/sample_fmwk/wrapper" folders.
Find more information about each software development frameworks API in the Software Frameworks section.
Given a particular hardware platform and development software framework, most of the resources and its configuration can be already determined by default. This part of the framework API just define some pre-configured instances for common and officially supported evaluation kits based configuration.
These instances are available in the "src/framework/sample_fmwk/wrapper/hall-switch-platf-xxx.hpp/cpp" source files.
Check out the supported ones in the Hardware Platforms section.
2. Library Details
Library Architecture
Hall Switch API
Hall Speed API
PAL Interface
Source Tree Structure
Preprocessor Configuration
Porting Guide
Doxygen Docs
4. Software Frameworks
Arduino
- Getting Started
- Lib Installation
- Ino Examples
- Arduino API
- PlatformIO
Cypress WICED
- Getting Started
- Lib Installation
- WICED API
- Troubleshooting Guide
Raspberry Pi
- Getting Started
- Lib Installation
- Examples
- API usage