Hardware Abstraction Layer



Introduction

Using RFID or barcode readers from different vendors, can impose significant complexity to a system. To override this problem there are two possible solutions. First to define a specification that all vendors should implement so that there can be a single way of interacting with such a device. Such specifications exist for RFID UHF readers, namely EPCglobal Reader Protocol (RP) and EPCglobal Low Lever Reader Protocol (LLRP). The problem is that not all vendors implement these specifications. In these cases we have to define an abstraction layer that can translate proprietary vendor system calls to standardised calls (e.g. to RP calls). In the case of AspireRFID, we support LLRP readers,with the use of Fosstrak libraries we support RP readers and can support any other reader that supports only a proprietary protocol by building its own HAL. Through the Reader Core Proxy component we support BRI reader protocol and the Fosstrak's simmulator.

Developers Guide

To add support for non-RP or LLRP compliant readers, the most important action that need to be taken is to implement a HAL class that extends the BaseReader interface at ALE layer ( Building a HAL Adaptor)