Skip to content

Commit a1660dc

Browse files
committed
Change the EAProtocol to com.sparkfun.rtk
1 parent 7161622 commit a1660dc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

examples/ESP32_BluetoothSerial/ESP32_BluetoothSerial.ino

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@
2020
NMEA GGA and RMC are shared with apps like Maps, over the Control Session
2121
as Location Information.
2222
NMEA GGA, RMC and GST are shared with apps like Field Maps, over a dedicated
23-
External Accessory protocol session. Here we emulate the Bad Elf GPS Pro,
24-
using the com.bad-elf.gps protocol name. We are grateful to Bad Elf for
25-
sharing details of their protocol openly: https://github.com/BadElf/gps-sdk
23+
External Accessory protocol session.
2624
2725
This example contains a copy of Espressif's BluetoothSerial code, with a
2826
modified ESP_BT_GAP_ACL_CONN_CMPL_STAT_EVT event.
@@ -107,9 +105,9 @@ const char *manufacturer = "SparkFun Electronics";
107105
const char *serialNumber = "123456";
108106
const char *firmwareVersion = "1.0.0";
109107
const char *hardwareVersion = "1.0.0";
110-
const char *EAProtocol = "com.bad-elf.gps"; // Emulate the Bad Elf GPS Pro. Thank you Bad Elf
108+
const char *EAProtocol = "com.sparkfun.rtk";
111109
const char *BTTransportName = "com.sparkfun.bt";
112-
const char *LIComponentName = "com.sparkfun.rtk";
110+
const char *LIComponentName = "com.sparkfun.li";
113111
const char *productPlanUID = "0123456789ABCDEF"; // This comes from the MFi Portal, when you register the product with Apple
114112

115113
// ===================================================================================================================

0 commit comments

Comments
 (0)