RoshanESP commented on code in PR #1537:
URL: https://github.com/apache/mynewt-nimble/pull/1537#discussion_r1339544689
##########
nimble/host/src/ble_gap.c:
##########
@@ -3703,6 +3713,25 @@ ble_gap_periodic_adv_start(uint8_t instance)
return 0;
}
+#if MYNEWT_VAL(BLE_PERIODIC_ADV_ENH)
+static int
+ble_gap_periodic_adv_update_did(uint8_t instance)
+{
+ static uint8_t buf[sizeof(struct ble_hci_le_set_periodic_adv_data_cp)];
+ struct ble_hci_le_set_periodic_adv_data_cp *cmd = (void *) buf;
+ uint16_t opcode;
+ memset(buf, 0, sizeof(buf));
Review Comment:
Done.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]