This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

accelerate send package

how i can send data 1500byte per second,use the sd_ble_gatts_hvx(). because i send the first package use sd_ble_gatts_hvx() and 300ms later i get the BLE_EVT_TX_COMPLETE, the i send the second package, i want to reduce the time(300ms),let the package send out fast,and get the return value send the second package ,accelerate send package

  • If you get TX_COMPLETE event 300ms later then either your connection interval is so long (= nothing to be done with that except trying to init connection with lower interval - if you are GAP Central - or use Peripheral Connection Parameters Change procedure - if you are GAP Peripheral) or you have some bug in your code which prevents you from getting this event sooner (if it occurs in Soft Device).

Related