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>
15 lines
294 B
C#
15 lines
294 B
C#
using FieldLogger.Views;
|
|
|
|
namespace FieldLogger;
|
|
|
|
public partial class AppShell : Shell
|
|
{
|
|
public AppShell()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Routing.RegisterRoute("devicescan", typeof(DeviceScanPage));
|
|
Routing.RegisterRoute("jobdetail", typeof(JobDetailPage));
|
|
}
|
|
}
|