You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by cc...@apache.org on 2016/07/19 20:30:25 UTC

[5/9] incubator-mynewt-newt git commit: MYNEWT-266 newtmgr over BLE

MYNEWT-266 newtmgr over BLE

- Use globally unique UUIDs for newtmgr


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/fe4de7b6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/fe4de7b6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/fe4de7b6

Branch: refs/heads/develop
Commit: fe4de7b6d765e250d6f4ece9eeadd18f00ac4e5d
Parents: b3a8cc8
Author: admin <vr...@gmail.com>
Authored: Tue Jul 12 18:04:00 2016 -0700
Committer: Vipul Rahane <vi...@runtime.io>
Committed: Tue Jul 19 13:06:58 2016 -0700

----------------------------------------------------------------------
 newtmgr/transport/connble.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/fe4de7b6/newtmgr/transport/connble.go
----------------------------------------------------------------------
diff --git a/newtmgr/transport/connble.go b/newtmgr/transport/connble.go
index bd38474..724801c 100644
--- a/newtmgr/transport/connble.go
+++ b/newtmgr/transport/connble.go
@@ -36,8 +36,8 @@ var BleMTU uint16 = 180
 var rxBLEPkt = make(chan []byte)
 var CharDisc = make(chan bool)
 
-var newtmgrServiceId = gatt.MustParseUUID("59462f12-9543-9999-12c8-58b459a27120")
-var newtmgrServiceCharId = gatt.MustParseUUID("5c3a659e-897e-45e1-b016-007107c96d00")
+var newtmgrServiceId = gatt.MustParseUUID("8D53DC1D-1DB7-4CD3-868B-8A527460AA84")
+var newtmgrServiceCharId = gatt.MustParseUUID("DA2E7828-FBCE-4E01-AE9E-261174997C48")
 var deviceName string
 
 type ConnBLE struct {