[sigrok-devel] [PATCH 0/2] Mooshimeter DMM support

2019-02-04 Thread Derek Hageman
This patch series adds support for the Mooshim Engineering Mooshimeter. This is broken up into a simple abstraction layer for the BLE GATT transport and then the more conventional actual implementation of the Mooshimeter API and protocol. The only currently supported transport is the Linux BlueZ

[sigrok-devel] [PATCH 2/2] Add support for the Mooshimeter DMM

2019-02-04 Thread Derek Hageman
This adds support for the Mooshim Engineering BLE based Mooshimeter. The driver itself builds on top of the BLE GATT abstraction layer, so this is only the support for the actual meter specific protocol. Since the meter has no physical way of configuring it, the actual configuration is set entire

[sigrok-devel] [PATCH 1/2] Add a BLE GATT abstraction layer

2019-02-04 Thread Derek Hageman
This adds a simple abstraction layer for Bluetooth Low Energy Generic Attribute profile type devices. It provides a simple interface to scan for specific devices bases on the UUIDs of the device and desired attributes. This only adds a Linux specific BlueZ backend for the generic frontend. Howeve