From af126030ce752dd60501db3a730c06cf53bf81bb Mon Sep 17 00:00:00 2001 From: weiting2 Date: Tue, 14 Apr 2020 12:48:25 +0800 Subject: [PATCH] DLE attempt --- .../examples/simple_central/cc26xx/app/simple_central.c | 7 +++++++ .../cc26xx/app/headstage/headstage_version.h | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/simplelink/ble_sdk_2_02_02_25/src/examples/simple_central/cc26xx/app/simple_central.c b/simplelink/ble_sdk_2_02_02_25/src/examples/simple_central/cc26xx/app/simple_central.c index 63d8f6351..09d3649ae 100644 --- a/simplelink/ble_sdk_2_02_02_25/src/examples/simple_central/cc26xx/app/simple_central.c +++ b/simplelink/ble_sdk_2_02_02_25/src/examples/simple_central/cc26xx/app/simple_central.c @@ -1701,6 +1701,13 @@ static void SimpleBLECentral_processGATTDiscEvent(gattMsgEvent_t *pMsg) { svcStartHdl = ATT_ATTR_HANDLE(pMsg->msg.findByTypeValueRsp.pHandlesInfo, 0); svcEndHdl = ATT_GRP_END_HANDLE(pMsg->msg.findByTypeValueRsp.pHandlesInfo, 0); + mem_UART_display("svcStartHdl:"); + mem_UART_display_u16(svcStartHdl); + mem_UART_newline(); + + mem_UART_display("svcEndHdl:"); + mem_UART_display_u16(svcEndHdl); + mem_UART_newline(); } // If procedure complete diff --git a/simplelink/ble_sdk_2_02_02_25/src/examples/simple_peripheral/cc26xx/app/headstage/headstage_version.h b/simplelink/ble_sdk_2_02_02_25/src/examples/simple_peripheral/cc26xx/app/headstage/headstage_version.h index ef0202fa1..d81875f47 100644 --- a/simplelink/ble_sdk_2_02_02_25/src/examples/simple_peripheral/cc26xx/app/headstage/headstage_version.h +++ b/simplelink/ble_sdk_2_02_02_25/src/examples/simple_peripheral/cc26xx/app/headstage/headstage_version.h @@ -4,13 +4,13 @@ #define VERSION_DATE_YEAR 20 #define VERSION_DATE_MONTH 4 -#define VERSION_DATE_DAY 13 -#define VERSION_DATE_HOUR 11 -#define VERSION_DATE_MINUTE 20 +#define VERSION_DATE_DAY 14 +#define VERSION_DATE_HOUR 12 +#define VERSION_DATE_MINUTE 48 // this is NOT the version hash !! // it's the last version hash -#define VERSION_HASH c7de00ba54a1e6796345068dfec432ce82141b1c +#define VERSION_HASH a0bae8c806a17b73a65b4beb5ed2dddb34dd1963 #define VERSION_GIT_BRANCH MemBoard_simple_central #endif