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>
17 lines
287 B
C#
17 lines
287 B
C#
using System;
|
|
using Microsoft.Maui;
|
|
using Microsoft.Maui.Hosting;
|
|
|
|
namespace FieldLogger;
|
|
|
|
class Program : MauiApplication
|
|
{
|
|
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
|
|
|
|
static void Main(string[] args)
|
|
{
|
|
var app = new Program();
|
|
app.Run(args);
|
|
}
|
|
}
|