File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -993,7 +993,7 @@ void HCIClass::handleEventPkt(uint8_t /*plen*/, uint8_t pdata[])
993
993
Serial.println (leMetaHeader->subevent ,HEX);
994
994
#endif
995
995
switch ((LE_META_EVENT)leMetaHeader->subevent ){
996
- case 0x0A :{
996
+ case ENHANCED_CONN_COMPLETE :{
997
997
struct __attribute__ ((packed)) EvtLeConnectionComplete {
998
998
uint8_t status;
999
999
uint16_t handle;
Original file line number Diff line number Diff line change @@ -46,7 +46,8 @@ enum LE_META_EVENT {
46
46
LONG_TERM_KEY_REQUEST = 0x05 ,
47
47
REMOTE_CONN_PARAM_REQ = 0x06 ,
48
48
READ_LOCAL_P256_COMPLETE = 0x08 ,
49
- GENERATE_DH_KEY_COMPLETE = 0x09
49
+ GENERATE_DH_KEY_COMPLETE = 0x09 ,
50
+ ENHANCED_CONN_COMPLETE = 0x0A ,
50
51
};
51
52
String metaEventToString (LE_META_EVENT event);
52
53
String commandToString (LE_COMMAND command);
You can’t perform that action at this time.
0 commit comments