Initial commit: FieldLogger MAUI app with Maglink BLE support
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>
This commit is contained in:
21
FieldLogger/App.xaml
Normal file
21
FieldLogger/App.xaml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version = "1.0" encoding = "UTF-8" ?>
|
||||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
xmlns:local="clr-namespace:FieldLogger"
|
||||
xmlns:conv="clr-namespace:FieldLogger.Converters"
|
||||
x:Class="FieldLogger.App">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Resources/Styles/Colors.xaml" />
|
||||
<ResourceDictionary Source="Resources/Styles/Styles.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<conv:ConnectionStateToColorConverter x:Key="StateColor" />
|
||||
<conv:ConnectionStateToTextConverter x:Key="StateText" />
|
||||
<conv:UtilityToNameConverter x:Key="UtilityName" />
|
||||
<conv:FixStatusToNameConverter x:Key="FixStatusName" />
|
||||
<conv:InvertBoolConverter x:Key="InvertBool" />
|
||||
</ResourceDictionary>
|
||||
</Application.Resources>
|
||||
</Application>
|
||||
Reference in New Issue
Block a user