I'm working with the ble_app_hrs_s110_with_dfu_pca10028 (nRF51 PCA10028)
example and am wondering what will happen if I attempt to send more than one sample at a time. Will only the last one ever be sent?
Does the underlying sd_ble_gatts_hvx
block or queue?
Will only 2 be sent each time, or 1 and then 2 in the following snippet:
uint16_t value1 = 1;
uint16_t value1 = 2;
err_code = ble_hrs_heart_rate_measurement_send(&hrs, value1);
err_code = ble_hrs_heart_rate_measurement_send(&hrs, value2);