Added Maglink RTK GNSS receiver integration with correct BLE UUIDs and device name filtering (ML-* prefix). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
12 lines
311 B
C#
12 lines
311 B
C#
namespace FieldLogger.Models;
|
|
|
|
/// <summary>The two kinds of BLE devices the app pairs with.</summary>
|
|
public enum DeviceKind
|
|
{
|
|
/// <summary>Underground Magnetics utility locating receiver (UMRX_* / DT100_*).</summary>
|
|
Locator,
|
|
|
|
/// <summary>Maglink RTK GNSS receiver (H11).</summary>
|
|
RtkGps,
|
|
}
|